scode-eslint-config/.eslintrc.js

32 lines
585 B
JavaScript
Raw Normal View History

2019-12-13 12:25:10 +01:00
module.exports = {
env: {
es6: true,
node: true
},
extends: [
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
rules: {
2020-02-06 12:26:07 +01:00
camelcase: 'off',
'sort-keys': 'off',
'lines-around-comment': 'off',
'array-element-newline': 'off',
'array-bracket-newline': 'off',
'max-len': 'off',
'func-call-spacing': 'off',
'semi': 'off',
'curly': 'off',
'strict': 'off',
'brace-style': 'off',
'no-magic-numbers': 'off'
2019-12-13 12:25:10 +01:00
}
}