08ea5fbe98
添加用户管理视图、API和状态管理文件
22 lines
342 B
JavaScript
22 lines
342 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'eslint:recommended'
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
rules: {
|
|
'no-console': 'warn',
|
|
'no-debugger': 'warn',
|
|
'no-unused-vars': 'warn',
|
|
'no-undef': 'error'
|
|
}
|
|
}
|