当前位置: 移动技术网 > IT编程>开发语言>JavaScript > eslint在webstorm中有错误警告

eslint在webstorm中有错误警告

2019年05月31日  | 移动技术网IT编程  | 我要评论

1. 报错missing space before function parentheses的问题

  解决:在代码目录中,打开.eslint文件,并在rules中添加如下一行代码即可:

  

 

  "space-before-function-paren": 0

2. 报错eslint: missing semicolon

  解决:在rules中添加

  "semi": [2, "always"] // 设置强制加分号

 

 

3.报错eslint: string must be use singlequote
  解决:在rules中添加
  "quotes": [1, "single"], //引号类型 `` "" ''


其他eslint错误提示:
“missing semicolon.” : “缺少分号.”,
“use the function form of \”use strict\”.” : “使用标准化定义function.”,
“unexpected space after ‘-’.” : “在’-'后面不应出现空格.”,
“expected a json value.” : “请传入一个json的值.”,
“mixed spaces and tabs.”: “空格和tab重复.”,
“unsafe character.” : “不安全的字符.”,
“line too long.”: “本行中的字符超过设定的最大长度.”,
“trailing whitespace.”: “本行末尾有过多无用空格.”,
“script url.” : “脚本url.”,
“unexpected {a} in ‘{b}’.” : “在 ‘{b}’ 中不该出现 {a}.”,
“unexpected ‘{a}’.” : “不该在此出现’{a}’.”,
“strings must use doublequote.” : “字符串需要用双引号”,
“unnecessary escapement.” : “不需要转义”,
“control character in string: {a}.” : “在字符串中出现了control的字符”,
“avoid \\’.” : “避免 \\”,
“avoid \\v.” : “避免 \\v”,
“avoid \\x-.” : “避免 \\x-”,
“bad escapement.” : “错误的转义字符”,
“bad number ‘{a}’.” : “错误的数字 ‘{a}’”,
“missing space after ‘{a}’.” : “在’{a}’之后缺少空格”,
“don’t use extra leading zeros ‘{a}’.” : “不要再’{a}’的前面用多余的0′,
“avoid 0x-. ‘{a}’.” : “避免使用 0x-. ‘{a}’.”,
“a trailing decimal point can be confused with a dot ‘{a}’.” : “在’{a}’中使用点尾随小数点”,
“unexpected comment.” : “不该在此处出现注释”,
“unescaped ‘{a}’.” : “没有转义 ‘{a}’”,
“unexpected control character in regular expression.” : “在正则表达式中出现了control字符”,
“unexpected escaped character ‘{a}’ in regular expression.” : “在正则表达式中出现了没有转义的字符 ‘{a}’”,
“expected ‘{a}’ and instead saw ‘{b}’.” : “应该用 ‘{a}’代替’{b}’”,
“spaces are hard to count. use {{a}}.” : “空格难以统计,请使用 {{a}}”,
“insecure ‘{a}’.” : “不安全的 ‘{a}’”,
“empty class.” : “空的class”,
“expected a number and instead saw ‘{a}’.”:“应该用数字代替’{a}’”,
“‘{a}’ should not be greater than ‘{b}’.”:“‘{a}’不应该比’{b}’大”,
“‘hasownproperty’ is a really bad name.”: “‘hasownproperty’是关键字”,
“‘{a}’ was used before it was defined.”:“‘{a}’未定义就已经使用了.”,
“‘{a}’ is already defined.”:“‘{a}’被重复定义”,
“a dot following a number can be confused with a decimal point.”:“数字后面的一个点会被误认为是十进制的小数点”,
“confusing minusses” : “容易混淆的负数表达-”,
“confusing plusses.” : “容易混淆的正数表达+”,
“unmatched ‘{a}’.” : “无法匹配的’{a}’”,
“expected ‘{a}’ to match ‘{b}’ from line {c} and instead saw ‘{d}’.”:“在行{c}中需要用’{a}’和’{b}’匹配,用来代替’{d}’”,
“unexpected early end of program.”:“程序不可预期的提前终止”,
“a leading decimal point can be confused with a dot: ‘.{a}’.”:“‘{a}’前的点容易混淆成小数点”,
“use the array literal notation [].”:“使用数组的符号 []“,
“expected an operator and instead saw ‘{a}’.”:“需要用一个符号来代替’{a}’”,
“unexpected space after ‘{a}’.”:“在’{a}’之后不能出现空格”,
“unexpected space before ‘{a}’.”:“在’{a}’之前不能出现空格”,
“bad line breaking before ‘{a}’.”:“在’{a}’之前错误的换行”,
“expected ‘{a}’ to have an indentation at {b} instead at {c}.”:“‘{a}’需要在{c}而不是{b}处缩进”,
“line breaking error ‘{a}’.”:“换行错误 ‘{a}’”,
“unexpected use of ‘{a}’.”:“此处不能用’{a}’”,
“bad operand.”:“错误的操作数”,
“use the isnan function to compare with nan.”:“使用isnan来与nan比较”,
“confusing use of ‘{a}’.”:“容易混淆的’{a}’的使用”,
“read only.”:“只读的属性”,
“‘{a}’ is a function.”:“‘{a}’是一个函数”,
‘bad assignment.’:“错误的赋值”,
“do not assign to the exception parameter.”:“不要给额外的参数赋值”,
“expected an identifier in an assignment and instead saw a function invocation.”:“在赋值的语句中需要有一个标识符,而不是一个方法的调用”,
“expected an identifier and instead saw ‘{a}’ (a reserved word).”:“需要有一个标识符,而不是’{a}’(保留字符)”,
“missing name in function declaration.”:“在方法声明中缺少名称”,
“expected an identifier and instead saw ‘{a}’.”:“需要有一个标识符,而不是’{a}’”,
“inner functions should be listed at the top of the outer function.”:“内部函数的声明应该放在此函数的顶部。”,
“unreachable ‘{a}’ after ‘{b}’.”:“在’{b}’之后无法获取’{a}’”,
“unnecessary semicolon.”:“不必要的分号”,
“label ‘{a}’ on {b} statement.”:“将’{a}’放在{b}的声明中”,
“label ‘{a}’ looks like a javascript url.”:“‘{a}’看上去像一个js的链接”,
“expected an assignment or function call and instead saw an expression”:“需要一个赋值或者一个函数调用,而不是一个表达式.”,
“do not use ‘new’ for side effects.”:“不要用’new’语句.”,
“unnecessary \”use strict\”.”:“不必要的\”use strict\”.”,
“missing \”use strict\” statement.”:“缺少\”use strict\”的声明”,
“empty block.”:“空的模块”,
“unexpected /*member ‘{a}’.”:“不应出现 /*元素 ‘{a}’.”,
“‘{a}’ is a statement label.”:“‘{a}’是一个声明”,
“‘{a}’ used out of scope.”:“‘{a}’使用超出范围”,
“‘{a}’ is not allowed.”:“不允许使用’{a}’”,
“‘{a}’ is not defined.”:“‘{a}’没有被定义”,
“use ‘{a}’ to compare with ‘{b}’.”:“使用’{a}’与’{b}’相比”,
“variables should not be deleted.”:“变量需要被删除”,
“use the object literal notation {}.”:“使用对象的文字符号 {}”,
“do not use {a} as a constructor.”:“不要使用{a}作为一个构造对象”,
“the function constructor is eval.”:“the function constructor is eval.”,
“a constructor name should start with an uppercase letter.”:“一个构造对象的名称必须用大写字母开头.”,
“bad constructor.”:“错误的构造对象”,
“weird construction. delete ‘new’.”:“构造对象有误,请删除’new’”,
“missing ‘()’ invoking a constructor.”:“缺少括号()”,
“avoid arguments.{a}.”:“避免参数.{a}.”,
“document.write can be a form of eval.”:“document.write是eval的一种形式”,
‘eval is evil.’:“尽量不要使用eval”,
“math is not a function.”:“math不是一个函数”,
“missing ‘new’ prefix when invoking a constructor.”:“此处缺少了’new’”,
“missing radix parameter.”:“缺少参数”,
“implied eval is evil. pass a function instead of a string.”:“传递一个函数,而不是一个字符串”,
“bad invocation.”:“错误的调用”,
“['{a}'] is better written in dot notation.”:“['{a}']最好用点.的方式”,
“extra comma.”:“多余的逗号”,
“don’t make functions within a loop.”:“不要用循环的方式创建函数”,
“unexpected parameter ‘{a}’ in get {b} function.”:“在{b}方法中不该用到参数’{a}’”,
“duplicate member ‘{a}’.”:“重复的’{a}’”,
“expected to see a statement and instead saw a block.”:“此处应该是语句声明.”,
“too many var statements.”:“过多var的声明”,
“redefinition of ‘{a}’.”:“‘{a}’被重复定义”,
“it is not necessary to initialize ‘{a}’ to ‘undefined’.”:“无需将’{a}’初始化为’undefined’”,
“expected a conditional expression and instead saw an assignment.”:“此处需要一个表达式,而不是赋值语句”,
“expected a ‘break’ statement before ‘case’.”:“在’case’之前需要有’break’.”,
“expected a ‘break’ statement before ‘default’.”:“在’default’之前需要有’break’.”,
“this ‘switch’ should be an ‘if’.”:“此处’switch’应该是’if’.”,
“all ‘debugger’ statements should be removed.”:“请删除’debugger’的语句”,
“‘{a}’ is not a statement label.”:“‘{a}’不是一个声明标签.”,
“expected an assignment or function call and instead saw an expression.”:“需要一个语句或者一个函数调用,而不是一个表达式”,
“function declarations should not be placed in blocks. use a function expression or move the statement to the top of the outer function.”:“函数的声明不能放在类似if的块中,需要放在外部函数的顶部.”
转载自:https://www.cnblogs.com/lcddjm/p/6595007.html

 

  

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网