Skip to content

Commit

Permalink
eslint: config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Aug 6, 2019
1 parent c204cda commit acf0e58
Show file tree
Hide file tree
Showing 3 changed files with 758 additions and 4 deletions.
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"strict": ["error", "never"],
"valid-typeof": "error",
"no-unsafe-negation": "error",
"no-unused-vars": "error",
"no-unexpected-multiline": "error",
"no-undef": "error"
},
"env": {
"browser": true
}
}
Loading

0 comments on commit acf0e58

Please sign in to comment.