23 lines
408 B
JavaScript
23 lines
408 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
'standard'
|
||
|
],
|
||
|
globals: {
|
||
|
Atomics: 'readonly',
|
||
|
SharedArrayBuffer: 'readonly'
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 11
|
||
|
},
|
||
|
rules: {
|
||
|
indent: ['error', 4],
|
||
|
'no-async-promise-executor': 'off',
|
||
|
'no-unused-vars': 'off'
|
||
|
}
|
||
|
}
|