在电子 vue-cli 项目中工作。尝试升级 eslint 但默认设置已no-use-before-define
启用。
这会导致它捕获对事物的每次使用,例如window.process.env.username
错误。
我尝试将我的规则设置为"no-use-before-define": ["error", { "variables": false }],
但没有帮助。将窗口添加为全局也无济于事。有没有办法修复 eslint 以对 window 变量感到满意?
我确实喜欢这个功能的想法,所以如果可能的话,我想保留它。但是,如果这是最好的答案,只需将其关闭也可以。
如果有帮助,这是我当前的 .eslintrc.js 文件
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
// Don't error on variables that are global, like window, not working.
"no-use-before-define": ["error", { "variables": false }],
'generator-star-spacing': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"vue/html-self-closing": ["error", {
"html": {
"void": "always",
"normal": "any",
"component": "always"
},
"svg": "always",
"math": "always"
}]
}
}
谢谢
-编辑
试过了
globals: {
window: 'writable'
},
但是没有效果