21 lines
295 B
JavaScript
21 lines
295 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es2021: true,
|
||
|
node: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'xo',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
},
|
||
|
rules: {
|
||
|
semi: 'off',
|
||
|
'padded-blocks': 'off',
|
||
|
'object-curly-spacing': [2, 'always'],
|
||
|
'capitalized-comments': 'off',
|
||
|
camelcase: 'off',
|
||
|
},
|
||
|
}
|