cqr-env
Version:
Have multiple env files that can be encrypted and included in version control
34 lines (32 loc) • 681 B
JavaScript
module.exports = {
env: {
browser: true,
es6: true,
node: true
},
extends: [
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module'
},
rules: {
curly: ['off'],
'dot-notation': ['off'],
eqeqeq: ['off'],
'no-debugger': ['off'],
'no-extra-boolean-cast': ['off'],
'no-mixed-operators': ['off'],
'no-multiple-empty-lines': ['off'],
'no-throw-literal': ['off'],
'no-unused-vars': ['off'],
'object-curly-spacing': ['off'],
'one-var': ['off'],
'spaced-comment': ['off']
}
}