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