Skip to content

Commit 1133a50

Browse files
nickdeisNicholas Deis
andauthored
Prerelease v2 (#38)
* Prep for pre-release * 2.1.1-rc.0 * Update to 2.1.1 --------- Co-authored-by: Nicholas Deis <[email protected]>
1 parent d4d881b commit 1133a50

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/node_modules/
22
*.log
3-
.vs/
3+
.vs/
4+
.DS_Store

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ staging/*
66
.github/*
77
src/*
88
tsconfig.json
9-
v1tov2.md
9+
v1tov2.md
10+
CHANGELOG.md
11+
.DS_Store

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function shouldIgnore(value, toIgnore) {
3030
}
3131
const meta = {
3232
name: "eslint-plugin-no-secrets",
33-
version: "2.1.0",
33+
version: "2.1.1",
3434
};
3535
exports.meta = meta;
3636
const noSecrets = {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-no-secrets",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "An eslint rule that searches for potential secrets/keys in code",
55
"main": "./dist/index.js",
66
"types": "./index.d.ts",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function shouldIgnore(value: string, toIgnore) {
3636

3737
const meta: ESLint.Plugin["meta"] = {
3838
name: "eslint-plugin-no-secrets",
39-
version: "2.1.0",
39+
version: "2.1.1",
4040
};
4141

4242
const noSecrets: Rule.RuleModule = {

0 commit comments

Comments
 (0)