"no-console":"off", 开启debugger"no-debugger":"off", 关闭代码编写时以空格开头"generator-star-spacing":"off", 开启代码编写时可写tab键"no-tabs":"off", 开启var定义"no-unused-vars":"off", 开启不规则空白"no-irregular-whitespace":"off", 关闭泛型为any的报错"@typescript-eslint/no-explicit-...
在eslint的规则里加上这个,console就不会报错了 "rules":{"no-console":"off",}
"no-console": "off", "no-debugger": "off" } } 全局禁用ESLint: 如果想要全局禁用ESLint,可以在配置文件中设置"root": true,并将其他配置项清空。 在vue.config.js中禁用: 通过在vue.config.js文件中设置lintOnSave选项为false来禁用ESLint: module.exports = { lintOnSave: false }; 二、使用注释禁用 ...
//禁止给类赋值 "no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 "no-console": 2,//禁止使用console "no-const-assign": 2,//禁止修改const声明的变量 "no-constant-condition": 2,//禁止在条件中使用常量表达式 if(true) if(1) "no-continue": 0,//禁止使用continue "no-control-regex": ...
'no-console': 'off', 'no-debugger': 'off', // 关闭更多规则 }, parserOptions: { parser: 'babel-eslint' } }; 完全禁用ESLint: 直接删除或重命名.eslintrc文件。这样ESLint将不会在项目中运行。 二、使用注释禁用特定代码段 如果你只想在特定的文件或代码段中禁用ESLint,可以使用注释来实现。这是...
"off", "windows" ], "quotes": [ "error", "single" ], "semi": [ "error", "always" ], "react/jsx-indent-props": [ "error", 4 ], "react/no-direct-mutation-state": 2 , "no-console": 0 , "no-debugger": 2 } };
"no-catch-shadow": 2,//禁止catch子句参数与外部作用域变量同名 "no-class-assign": 2,//禁止给类赋值 "no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 "no-console": 2,//禁止使用console "no-const-assign": 2,//禁止修改const声明的变量 ...
'no-console': 'off', 'no-inline-comments': 'off', } } 规则列表 // 禁用 alert、confirm 和 prompt ’no-alert’:0, // 禁用 arguments.caller 或 arguments.callee ’no-caller’:2, // 不允许在 case 子句中使用词法声明 ’no-case-declarations’:2, ...
"off"或者0,不启用这个规则 "warn"或者1,出现问题会有警告 "error"或者2,出现问题会报错 "no-console": "off"禁用 console "no-unused-vars": 2禁止出现未使用过的变量 "no-use-before-define": 2不允许在变量定义之前使用它们 "linebreak-style": [2, "unix"]强制使用一致的换行风格 ...
在.eslintrc 文件中首先配置了 eslint 推荐配置 extends:eslint.recommended,然后在 rules 里面配置 no-console: off 进行覆盖,实际运行时无效