Skip to content

Commit

Permalink
Prerelease v2 (#38)
Browse files Browse the repository at this point in the history
* Prep for pre-release

* 2.1.1-rc.0

* Update to 2.1.1

---------

Co-authored-by: Nicholas Deis <[email protected]>
  • Loading branch information
nickdeis and Nicholas Deis authored Dec 4, 2024
1 parent d4d881b commit 1133a50
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules/
*.log
.vs/
.vs/
.DS_Store
4 changes: 3 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ staging/*
.github/*
src/*
tsconfig.json
v1tov2.md
v1tov2.md
CHANGELOG.md
.DS_Store
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function shouldIgnore(value, toIgnore) {
}
const meta = {
name: "eslint-plugin-no-secrets",
version: "2.1.0",
version: "2.1.1",
};
exports.meta = meta;
const noSecrets = {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-no-secrets",
"version": "2.1.0",
"version": "2.1.1",
"description": "An eslint rule that searches for potential secrets/keys in code",
"main": "./dist/index.js",
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function shouldIgnore(value: string, toIgnore) {

const meta: ESLint.Plugin["meta"] = {
name: "eslint-plugin-no-secrets",
version: "2.1.0",
version: "2.1.1",
};

const noSecrets: Rule.RuleModule = {
Expand Down

0 comments on commit 1133a50

Please sign in to comment.