Skip to content

Commit ceca583

Browse files
committed
Change undef to be error, ignore vscode
1 parent 182f6da commit ceca583

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"no-multiple-empty-lines": [1, { "max": 1}],
2020
"no-underscore-dangle": 0,
2121
"no-unused-vars": [1, { "vars": "all", "args": "none" }],
22-
"no-undef": 1,
22+
"no-undef": 2,
2323
"no-var": 2,
2424
"quote-props": [2, "as-needed"],
2525
"quotes": [2, "double"],

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ build/Release
2727
node_modules
2828

2929
/lib/
30+
31+
32+
# Editors
33+
.vscode

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ tools/
44
.gitignore
55
.travis.yml
66
karma.conf.js
7-
.babelrc
7+
.babelrc
8+
.vscode

test/.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"mocha": true
44
},
55
"globals": {
6-
"assert": true,
6+
"assert": true
77
},
88
"rules": {
99
"no-script-url": 1,

0 commit comments

Comments
 (0)