mirror of
https://github.com/certd/certd.git
synced 2026-05-18 22:57:31 +08:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
parserOptions: {
|
||
|
|
sourceType: 'module',
|
||
|
|
ecmaVersion: '2020'
|
||
|
|
},
|
||
|
|
parser: 'babel-eslint',
|
||
|
|
extends: ['standard'],
|
||
|
|
env: {
|
||
|
|
node: true
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
||
|
|
}
|
||
|
|
}
|