Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoffrey Signorato committed Jun 13, 2019
2 parents d470289 + 7f58964 commit d7306b2
Show file tree
Hide file tree
Showing 13 changed files with 1,127 additions and 713 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 d7306b2

Please sign in to comment.