refactor: rename ui

This commit is contained in:
xiaojunnuo
2021-02-04 11:17:54 +08:00
parent eab0c3be60
commit a39dac4dbd
55 changed files with 162 additions and 2111 deletions
+16
View File
@@ -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'
}
}