BrailleGameOfLife/.eslintrc.js
2019-09-23 16:26:37 +05:00

19 lines
259 B
JavaScript

module.exports = {
env: {
browser: true,
commonjs: true,
es6: true
},
extends: [
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
},
rules: {
}
}