"no-path-concat": 0,//node中不能使用__dirname或__filename做路径拼接 "no-plusplus": 0,//禁止使用++,-- "no-process-env": 0,//禁止使用process.env "no-process-exit": 0,//禁止使用process.exit() "no-proto": 2,//禁止使用__proto__属性 "no-redeclare": 2,//禁止重复声明变量 "no-...
/* eslint-disable */alert('foo')若临时禁止某个或多个规则出现警告,可以在末尾跟上要禁止的规则,比如:// eslint-disable-line no-alert 可以在当前行使用 alert() 时禁止出现警告。多个规则时,使用逗号 (,) 隔开。另外,以上所有方法同样适用于插件规则。例如,禁止 eslint-plugin-example 的 rule-name...
"no-console":"off",//在这禁止掉console报错检查 "no-irregular-whitespace":"off"//这禁止掉 空格报错检查 }, "parserOptions": { "parser": "babel-eslint" } }, //在rules规则中 禁止掉这些规则 下面罗列一些,一些规则的含义:、 “off” or 0 - 关闭(禁用)规则 “warn” or 1 - 将规则视为...
"no-console": 0, //不禁用console "no-debugger": 2, //禁用debugger "no-var": 0, //对var警告 "semi": 0, //不强制使用分号 "no-irregular-whitespace": 0, //不规则的空白不允许 "no-trailing-spaces": 1, //一行结束后面有空格就发出警告 "eol-last": 0, //文件以单一的换行符结束 "n...
"no-caller": 1,//禁止使用arguments.caller或arguments.callee "no-catch-shadow": 2,//禁止catch子句参数与外部作用域变量同名 "no-class-assign": 2,//禁止给类赋值 "no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 "no-console": 2,//禁止使用console ...
The fact is that some of my partners prefer to writewindow.console.log. Or, I have to add a rule for myself? Btw, I find no-alert is simillar: Btw, I just found no-alert seems to be nicer:https://github.com/eslint/eslint/blob/master/lib%2Frules%2Fno-alert.js ...
"no-caller": 1,//禁止使用arguments.caller或arguments.callee "no-catch-shadow": 2,//禁止catch子句参数与外部作用域变量同名 "no-class-assign": 2,//禁止给类赋值 "no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 "no-console": 2,//禁止使用console ...
//eslint exercise 1 (no-console)//When you're finished with this exercise, run//"npm start exercise.eslint.2"//to move on to the next exerciseconst{RuleTester} = require('eslint')construle = require('./no-console')construleTester =newRuleTester() ...
然后我们就直接调用ruleTester的run函数就好了。有效的样例放在valid下面,无效的样例放在invalid下面,是不是很简单。我们先看下有效的:ruleTester.run("no-console", rule, { valid: [ "Console.info(foo)", // single array item { code: "console.info(foo)", options: [{ allow: ["...
(推荐)"no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 (推荐)"no-console": 2,//禁止使用console (推荐)"no-const-assign": 2,//禁止修改const声明的变量 (推荐)"no-constant-condition": 2,//禁止在条件中使用常量表达式 if(true) if(1) ...