eslint-plugin-no-secrets
Advanced tools
Comparing version 0.9.0 to 0.9.1
# CHANGELOG | ||
## 0.9.1 | ||
### Patch | ||
- Pre-release before adding support for eslint flag config and to fix versioning | ||
## 0.8.9 | ||
### Minor | ||
- Replaced how JSON document scanning worked so it works with other plugins | ||
- Replaced how JSON document scanning worked so it works with other plugins | ||
## 0.7.9 | ||
### Minor | ||
- Add support for linting comments | ||
- Add support for linting comments | ||
## 0.6.9 | ||
### Patch | ||
- Add eslint 7 unit testing | ||
- Add eslint 7 unit testing | ||
## 0.6.8 | ||
### Patch | ||
- Security updates | ||
- Removed eslint 5 testing | ||
- Security updates | ||
- Removed eslint 5 testing | ||
## 0.6.5 | ||
### Patch | ||
- Security updates | ||
- Security updates | ||
## 0.6.4 | ||
### Minor | ||
- Added support for scanning JSON documents | ||
- Added support for scanning JSON documents | ||
## 0.5.4 | ||
### Minor | ||
- Added support for two new options | ||
- `additionalDelimiters`: In addition to splitting the string by whitespace, tokens will be further split by these delimiters | ||
- `ignoreCase`: Ignores character case when calculating entropy. This could lead to some false negatives | ||
- Added support for two new options | ||
- `additionalDelimiters`: In addition to splitting the string by whitespace, tokens will be further split by these delimiters | ||
- `ignoreCase`: Ignores character case when calculating entropy. This could lead to some false negatives | ||
## 0.3.4 | ||
### Patch | ||
- Security updates | ||
- Security updates |
@@ -34,10 +34,5 @@ const { | ||
module.exports = { | ||
meta: { | ||
name: "eslint-plugin-no-secrets", | ||
version: "1.0.0-eslint9" | ||
}, | ||
rules: { | ||
"no-secrets": { | ||
meta: { | ||
schema: false, | ||
messages: { | ||
@@ -44,0 +39,0 @@ [HIGH_ENTROPY]: `Found a string with entropy {{ entropy }} : "{{ token }}"`, |
{ | ||
"name": "eslint-plugin-no-secrets", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "An eslint rule that searches for potential secrets/keys in code", | ||
@@ -25,8 +25,6 @@ "main": "index.js", | ||
"eslint": "^7.19.0", | ||
"eslint-plugin-jsonc": "^2.15.1", | ||
"eslint-plugin-jsonc": "^0.9.0", | ||
"eslint-plugin-self": "^1.2.0", | ||
"eslint6": "npm:eslint@^6.8.0", | ||
"eslint8": "npm:eslint@^8.57.0", | ||
"eslint9": "npm:eslint@^9.0.0", | ||
"mocha": "^10.4.0" | ||
"mocha": "^7.1.1" | ||
}, | ||
@@ -36,2 +34,3 @@ "peerDependencies": { | ||
}, | ||
"dependencies": {}, | ||
"engines": { | ||
@@ -38,0 +37,0 @@ "npm": ">=6.9.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5
18788
295