Skip to content

Commit

Permalink
πŸ™‚ Now you understand JS a little bit more.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhama committed Nov 16, 2019
1 parent fa490ea commit 9aa1b2c
Showing 1 changed file with 20 additions and 0 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: {
commonjs: true,
es6: true,
node: true,
mocha: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {
},
};

0 comments on commit 9aa1b2c

Please sign in to comment.