26 lines
378 B
JavaScript
26 lines
378 B
JavaScript
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'airbnb-base'
|
|
],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly'
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
},
|
|
rules: {
|
|
"comma-dangle": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"no-console": "off",
|
|
"object-curly-newline": "off"
|
|
}
|
|
};
|