fes.js/.eslintrc.js

22 lines
585 B
JavaScript
Raw Normal View History

2020-08-27 17:18:57 +08:00
module.exports = {
2022-03-27 20:10:28 +08:00
extends: ['@webank/eslint-config-webank/vue.js'],
2020-08-27 17:18:57 +08:00
globals: {
// 这里填入你的项目需要的全局变量
// 这里值为 false 表示这个全局变量不允许被重新赋值,比如:
//
// Vue: false
2022-03-27 20:10:28 +08:00
__DEV__: false,
2020-08-27 17:18:57 +08:00
},
rules: {
'vue/comment-directive': 'off',
'global-require': 'off',
2020-11-02 09:51:40 +08:00
'import/no-unresolved': 'off',
2021-01-22 17:43:38 +08:00
'no-restricted-syntax': 'off',
'no-undefined': 'off',
2022-03-27 20:10:28 +08:00
'vue/valid-template-root': 'off',
2021-02-08 19:21:30 +08:00
},
2021-08-13 17:58:13 +08:00
env: {
2022-03-27 20:10:28 +08:00
jest: true,
},
2020-08-27 17:18:57 +08:00
};