mirror of
https://github.com/certd/certd.git
synced 2026-05-18 14:27:36 +08:00
refactor: rename ui
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user