Skip to content

Commit

Permalink
switch from jshint to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobg committed Dec 2, 2021
1 parent e4232b0 commit eeed82f
Show file tree
Hide file tree
Showing 12 changed files with 9,335 additions and 579 deletions.
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-console": "off",
"strict": ["error", "global"],
"curly": "warn"
}
}
15 changes: 0 additions & 15 deletions .jshintrc

This file was deleted.

Loading

0 comments on commit eeed82f

Please sign in to comment.