Skip to content

Commit ad350ab

Browse files
committed
switch from jshint to eslint
1 parent e4232b0 commit ad350ab

15 files changed

+9353
-591
lines changed

.eslintrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"browser": true,
5+
"node": true,
6+
"es6": true
7+
},
8+
"parserOptions": {
9+
"ecmaVersion": "latest",
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"no-console": "off",
14+
"strict": ["error", "global"],
15+
"curly": "warn"
16+
},
17+
"ignorePatterns": [
18+
"*.min.js"
19+
]
20+
}

.jshintrc

-15
This file was deleted.

0 commit comments

Comments
 (0)