Skip to content

Commit

Permalink
🎨 run eslint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoffrey Signorato committed Jun 5, 2019
1 parent 63c5520 commit 5831f44
Show file tree
Hide file tree
Showing 13 changed files with 901 additions and 663 deletions.
90 changes: 0 additions & 90 deletions .eslintrc

This file was deleted.

23 changes: 23 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
env: {
browser: true,
es6: true
},
extends: 'airbnb-base',
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
rules: {
indent: ['error', 4],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'max-len': ['error', { code: 150 }],
'no-prototype-builtins': 0,
'import/no-cycle': 0,
'comma-dangle': ['error', 'never']
}
};
Loading

0 comments on commit 5831f44

Please sign in to comment.