Skip to content

Commit

Permalink
Merge pull request #12 from JustSift/add-eslint
Browse files Browse the repository at this point in the history
add eslint and lint everything
  • Loading branch information
ricokahler committed Aug 24, 2019
2 parents be7b1a1 + 0dcdfe7 commit f9fe99f
Show file tree
Hide file tree
Showing 12 changed files with 958 additions and 13 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
env: {
browser: true,
es6: true,
},
extends: 'react-app',
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: [],
rules: {},
};

0 comments on commit f9fe99f

Please sign in to comment.