Skip to content

Commit 53f4b7a

Browse files
cesaryuanecho094
andauthoredSep 26, 2023
chore: ignore test js file and IDE settings (echo094#38)
* chore: ignore test js file and IDE settings * Add new line at end of file Signed-off-by: echo094 <[email protected]> * chore: change to .eslintignore * chore: change to .eslintignore * option --ignore-path is no longer needed in the command Signed-off-by: echo094 <[email protected]> --------- Signed-off-by: echo094 <[email protected]> Co-authored-by: cesaryuan <[email protected]> Co-authored-by: echo094 <[email protected]>
1 parent b5d1a94 commit 53f4b7a

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed
 

‎.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/input.js
2+
/output.js

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,8 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
input.js
107+
output.js
108+
.vscode/
109+
.idea/

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"deob": "node src/main.js -t obfuscator",
55
"deso": "node src/main.js -t sojson",
66
"desov7": "node src/main.js -t sojsonv7",
7-
"lint": "eslint --ext .js --ignore-path .gitignore --fix src"
7+
"lint": "eslint --ext .js --fix src"
88
},
99
"dependencies": {
1010
"@babel/generator": "^7.17.10",

0 commit comments

Comments
 (0)
Please sign in to comment.