Skip to content

Commit

Permalink
JS linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tlovett1 committed Jul 16, 2020
1 parent 0448b94 commit dbf9117
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@
"camelcase": [ 1 ],
"no-debugger": [ 1 ],
"no-unused-vars": [ 1 ],
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}]
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-plusplus": [ 0 ],
"import/prefer-default-export": [ 0 ],
"no-lonely-if": [ 0 ],
"func-names": [ 0 ]
},
"globals": {
"wp": true,
"window": true
"jQuery": true
},
"env": {
"browser": true
Expand Down

0 comments on commit dbf9117

Please sign in to comment.