@secretlint/config-loader
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.0.1](https://github.com/secretlint/secretlint/compare/v1.0.0...v1.0.1) (2020-03-29) | ||
**Note:** Version bump only for package @secretlint/config-loader | ||
# [1.0.0](https://github.com/secretlint/secretlint/compare/v0.10.1...v1.0.0) (2020-03-18) | ||
@@ -8,0 +16,0 @@ |
@@ -153,3 +153,5 @@ "use strict"; | ||
ok: false, | ||
errors: [new Error("secretlint config is not found")] | ||
errors: [ | ||
new Error("secretlint config is not found\n \nSecrelint require .secretlintrc config file.\nThe config file define the use of rules.") | ||
] | ||
}; | ||
@@ -156,0 +158,0 @@ } |
{ | ||
"name": "@secretlint/config-loader", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Config loader for secretlint.", | ||
@@ -46,5 +46,5 @@ "keywords": [ | ||
"dependencies": { | ||
"@secretlint/config-validator": "^1.0.0", | ||
"@secretlint/profiler": "^1.0.0", | ||
"@secretlint/types": "^1.0.0", | ||
"@secretlint/config-validator": "^1.0.1", | ||
"@secretlint/profiler": "^1.0.1", | ||
"@secretlint/types": "^1.0.1", | ||
"@textlint/module-interop": "^1.0.2", | ||
@@ -56,10 +56,10 @@ "debug": "^4.1.1", | ||
"devDependencies": { | ||
"@secretlint/secretlint-rule-example": "^1.0.0", | ||
"@secretlint/secretlint-rule-example": "^1.0.1", | ||
"@types/mocha": "^7.0.1", | ||
"@types/node": "^13.7.4", | ||
"@types/node": "^13.9.3", | ||
"cross-env": "^7.0.0", | ||
"mocha": "^7.0.1", | ||
"prettier": "^1.19.1", | ||
"mocha": "^7.1.1", | ||
"prettier": "^2.0.2", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^8.6.2", | ||
"ts-node": "^8.8.1", | ||
"ts-node-test-register": "^8.0.1", | ||
@@ -71,3 +71,3 @@ "typescript": "^3.8.2" | ||
}, | ||
"gitHead": "b2ffb304a2b5dbfc9747988c22cff51a2a61fbb6" | ||
"gitHead": "def18bf840d00d67f07f0f3e4e896bbfb1dfc41f" | ||
} |
@@ -236,3 +236,8 @@ import { rcFile } from "rc-config-loader"; | ||
ok: false, | ||
errors: [new Error("secretlint config is not found")] | ||
errors: [ | ||
new Error(`secretlint config is not found | ||
Secrelint require .secretlintrc config file. | ||
The config file define the use of rules.`) | ||
] | ||
}; | ||
@@ -239,0 +244,0 @@ } |
Sorry, the diff of this file is not supported yet
52746
950