19 lines
218 B
JavaScript
19 lines
218 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es2021: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
'standard'
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12
|
||
|
},
|
||
|
globals: {
|
||
|
_CC: 'readonly'
|
||
|
},
|
||
|
rules: {
|
||
|
}
|
||
|
}
|