ESLint的一些配置项解读

example-one

eslint完整的校验规则可以访问这里!

1. 安装eslint:$ npm install eslint –save-dev
2. 使用eslint –init生成一个配置文件
{

    "env": {
    
        "browser": true,
    
    
        "jasmine": true,
    
        "node": true,
    
    
    
    
    
        "protractor": true,
    
        "es6": true
    },
    
    
  "globals": {
    "angular": true
  },
    
    
  "parser": "babel-eslint",
    
    
    
    
    "rules": {
        
        "strict": 0,
        
        "comma-dangle": 2,
        
        "no-cond-assign": 2,
        
        "no-constant-condition": 2,
        
        "no-control-regex": 2,
        
        "no-debugger": 2,
        
        "no-dupe-args": 2,
        
        "no-dupe-keys": 2,
        
        "no-duplicate-case": 2,
        
        "no-empty-character-class": 2,
        
        "no-ex-assign": 2,
        
        "no-extra-boolean-cast": 2,
        
        "no-extra-parens": 2,
        
        "no-extra-semi": 2,
        
        "no-func-assign": 2,
        
        "no-inner-declarations": 2,
        
        "no-invalid-regexp": 2,
        
        "no-irregular-whitespace": 2,
        
        "no-negated-in-lhs": 2,
        
        "no-obj-calls": 2,
        
        "no-regex-spaces": 2,
        
        "no-sparse-arrays": 2,
        
        "no-unexpected-multiline": 2,
        
        "no-unreachable": 2,
        
        "use-isnan": 2,
        
        "valid-typeof": 2,

        
        "accessor-pairs": 2,
        
        "array-callback-return": 2,
        
        "block-scoped-var": 2,
        
        "complexity": 2,
        
        "curly": [2, "multi-line"],
        
        "default-case": 2,
        
        "dot-notation": 2,
        
        "eqeqeq": 2,
        
        "guard-for-in": 2,
        
        "no-caller": 2,
        
        "no-case-declarations": 2,
        
        "no-div-regex": 2,
        
        "no-else-return": 2,
        
        "no-empty-pattern": 2,
        
        "no-eq-null": 2,
        
        "no-eval": 2,
        
        "no-extend-native": 2,
        
        "no-extra-bind": 2,
        
        "no-extra-label": 2,
        
        "no-fallthrough": 2,
        
        "no-floating-decimal": 2,
        
        "no-implicit-coercion": 2,
        
        "no-implicit-globals": 2,
        
        "no-implied-eval": 2,
        
        "no-iterator": 2,
        
        "no-labels": 2,
        
        "no-lone-blocks": 2,
        
        "no-loop-func": 2,
        
        "no-multi-spaces": 2,
        
        "no-multi-str": 2,
        
        "no-native-reassign": 2,
        
        "no-new": 2,
        
        "no-new-func": 2,
        
        "no-new-wrappers": 2,
        
        "no-octal": 2,
        
        "no-octal-escape": 2,
        
        "no-param-reassign": 2,
        
        "no-proto": 2,
        
        "no-redeclare": 2,
        
        "no-script-url": 2,
        
        "no-self-assign": 2,
        
        "no-self-compare": 2,
        
        "no-sequences": 2,
        
        "no-throw-literal": 2,
        
        "no-unmodified-loop-condition": 2,
        
        "no-useless-call": 2,
        
        "no-useless-concat": 2,
        
        "no-void": 2,
        
        "no-warning-comments": 2,
        
        "no-with": 2,
        
        "radix": 2,
        
        "vars-on-top": 2,
        
        "wrap-iife": 2,
        
        "yoda": 2,

        
        "no-catch-shadow": 2,
        
        "no-delete-var": 2,
        
        "no-label-var": 2,
        
        "no-restricted-globals": 2,
        
        "no-shadow": 2,
        
        "no-shadow-restricted-names": 2,
        //禁用未声明的变量,除非它们在 /*global */ 注释中被提到
        "no-undef": 2,
        
        "no-undef-init": 2,
        
        "no-undefined": 2,
        
        "no-use-before-define": [2, { "functions": false }],

        
        "array-bracket-spacing": 2,
        
        "block-spacing": 2,
        
        "brace-style": 2,
        
        "camelcase": 2,
        
        "comma-spacing": 2,
        
        "comma-style": 2,
        
        "computed-property-spacing": 2,
        
        "consistent-this": [2, "self", "vm"],
        
        "eol-last": 2,
        
        "func-style": [2, "declaration"],
        
        "id-blacklist": 2,
        
        "id-match": 2,
        
        "indent": [2, "tab"],
        
        "jsx-quotes": 2,
        
        "key-spacing": 2,
        
        "keyword-spacing": 2,
        
        "linebreak-style": 2,
        
        "max-depth": 2,
        
        "max-nested-callbacks": 2,
        
        "new-parens": 2,
        
        "newline-after-var": 2,
        
        "newline-per-chained-call": 2,
        
        "no-array-constructor": 2,
        
        "no-bitwise": 2,
        
        "no-continue": 2,
        
        "no-inline-comments": 2,
        
        "no-mixed-spaces-and-tabs": 2,
        
        "no-multiple-empty-lines": 2,
        
        "no-negated-condition": 2,
        
        "no-nested-ternary": 2,
        
        "no-new-object": 2,
        
        "no-plusplus": 2,
        
        "no-restricted-syntax": 2,
        
        "no-spaced-func": 2,
        
        "no-trailing-spaces": 2,
        
        "no-unneeded-ternary": 2,
        
        "no-whitespace-before-property": 2,
        
        "object-curly-spacing": 2,
        
        "operator-assignment": 2,
        
        "operator-linebreak": 2,
        
        "quote-props": [2, "as-needed"],
        
        "quotes": [2, "single"],
        
        "semi": 2,
        
        "semi-spacing": 2,
        
        "space-before-blocks": 2,
        
        "space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
        
        "space-in-parens": 2,
        
        "space-infix-ops": 2,
        
        "space-unary-ops": 2,
        
        "wrap-regex": 2,

        
        "arrow-spacing": 2,
        
        "constructor-super": 2,
        
        "generator-star-spacing": 2,
        
        "no-class-assign": 2,
        
        "no-confusing-arrow": 2,
        
        "no-const-assign": 2,
        
        "no-dupe-class-members": 2,
        
        "no-new-symbol": 2,
        
        "no-restricted-imports": 2,
        
        "no-this-before-super": 2,
        
        "no-useless-constructor": 2,
        
        "no-var": 2,
        
        "object-shorthand": 0,
        
        "prefer-arrow-callback": 2,
        
        "prefer-const": 2,
        
        "prefer-reflect": 0,
        
        "prefer-spread": 2,
        
        "prefer-template": 2,
        
        "require-yield": 2,
        
        "template-curly-spacing": 2,
        
        "yield-star-spacing": 2,

        "angular/log": 0
    }
}

example-two:

{   
    //javascript语言选项
  "parserOptions": {
    //语法版本3、5(默认)、6、7、8
    "ecmaVersion": 6,
    //ecmaFeatures - 这是个对象,表示你想使用的额外的语言特性:
    //globalReturn - 允许在全局作用域下使用 return 语句
    //impliedStrict - 启用全局 strict mode (如果 ecmaVersion 是 5 或更高)
    //jsx - 启用 JSX
    //experimentalObjectRestSpread - 启用对实验性的 object rest/spread properties //的支持。(重要:这是一个实验性的功能,在未来可能会改变明显。 建议你写的规则 //不要依赖该功能,除非当它发生改变时你愿意承担维护成本。)
    "ecmaFeatures": {
      "experimentalObjectRestSpread": true,
      "jsx": false
    },
    //设置为 "script" (默认) 或 "module"(如果你的代码是 ECMAScript 模块)
    "sourceType": "module"
  },
    //预定义全局变量
  "env": {
    "es6": true,
    "node": true
  },
    //配置第三方插件
    //在使用插件前要用npm安装它
  "plugins": [
    "standard",
    "promise"
  ],
    //定义全局变量
    //true代表允许重写、false代表不允许重写
  "globals": {
    "document": true,
    "navigator": true,
    "window": true
  },

  "rules": {
    //在定义对象的时候,getter/setter需要同时出现
    "accessor-pairs": 2,
    // 箭头函数中,在需要的时候,在参数外使用小括号(只有一个参数时,可以不适用括号,其它情况下都需要使用括号)
    "arrow-parens": [2, "as-needed"],
    //箭头函数中的箭头前后需要留空格
    "arrow-spacing": [2, { "before": true, "after": true }],
    //如果代码块是单行的时候,代码块内部前后需要留一个空格
    "block-spacing": [2, "always"],
    //大括号语法采用『1tbs』,允许单行样式
    "brace-style": [2, "1tbs", { "allowSingleLine": true }],
    //在定义对象或数组时,最后一项不能加逗号
    "comma-dangle": [2, "never"],
    //在写逗号时,逗号前面不需要加空格,而逗号后面需要添加空格
    "comma-spacing": [2, { "before": false, "after": true }],
    //如果逗号可以放在行首或行尾时,那么请放在行尾
    "comma-style": [2, "last"],
    //在constructor函数中,如果classes是继承其他class,那么请使用super。否者不使用super
    "constructor-super": 2,
    //在if-else语句中,如果if或else语句后面是多行,那么必须加大括号。如果是单行就应该省略大括号。
    "curly": [2, "multi-line"],
    //该规则规定了.应该放置的位置,
    "dot-location": [2, "property"],
    //该规则要求代码最后面需要留一空行,(仅需要留一空行)
    "eol-last": 2,
    //使用=== !== 代替== != .
    "eqeqeq": [2, "allow-null"],
    //该规则规定了generator函数中星号两边的空白。
    "generator-star-spacing": [2, { "before": true, "after": true }],
    // 规定callback 如果有err参数,只能写出err 或者 error .
    "handle-callback-err": [2, "^(err|error)$" ],
    //这个就是关于用什么来缩进了,规定使用tab 来进行缩进,switch中case也需要一个tab .
    "indent": [2, "tab", { "SwitchCase": 1 }],
    // keyword 前后需要空格
    "keyword-spacing": [2, {"before": true, "after": true, "overrides": {}}],
    //该规则规定了在对象字面量语法中,key和value之间的空白,冒号前不要空格,冒号后面需要一个空格
    "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
    //构造函数首字母大写
    "new-cap": [2, { "newIsCap": true, "capIsNew": false }],
    //在使用构造函数时候,函数调用的圆括号不能够省略
    "new-parens": 2,
    //禁止使用Array构造函数
    "no-array-constructor": 2,
    //禁止使用arguments.caller和arguments.callee
    "no-caller": 2,
    //禁止覆盖class命名,也就是说变量名不要和class名重名
    "no-class-assign": 2,
    //在条件语句中不要使用赋值语句
    "no-cond-assign": 2,
    //const申明的变量禁止修改
    "no-const-assign": 2,
    //在正则表达式中禁止使用控制符(详见官网)
    "no-control-regex": 2,
    //禁止使用debugger语句
    "no-debugger": 2,
    //禁止使用delete删除var申明的变量
    "no-delete-var": 2,
    //函数参数禁止重名
    "no-dupe-args": 2,
    //class中的成员禁止重名
    "no-dupe-class-members": 2,
    //在对象字面量中,禁止使用重复的key
    "no-dupe-keys": 2,
    //在switch语句中禁止重复的case
    "no-duplicate-case": 2,
    //禁止使用不匹配任何字符串的正则表达式
    "no-empty-character-class": 2,
    //禁止使用eval函数
    "no-eval": 2,
    //禁止对catch语句中的参数进行赋值
    "no-ex-assign": 2,
    //禁止扩展原生对象
    "no-extend-native": 2,
    //禁止在不必要的时候使用bind函数
    "no-extra-bind": 2,
    //在一个本来就会自动转化为布尔值的上下文中就没必要再使用!! 进行强制转化了。
    "no-extra-boolean-cast": 2,
    //禁止使用多余的圆括号
    "no-extra-parens": [2, "functions"],
    //这条规则,简单来说就是在case语句中尽量加break,避免不必要的fallthrough错误,如果需要fall through,那么看官网。
    "no-fallthrough": 2,
    //简单来说不要写这样的数字.2 2.。应该写全,2.2 2.0 .
    "no-floating-decimal": 2,
    //禁止对函数名重新赋值
    "no-func-assign": 2,
    //禁止使用类eval的函数。
    "no-implied-eval": 2,
    //禁止在代码块中定义函数(下面的规则仅限制函数)
    "no-inner-declarations": [2, "functions"],
    //RegExp构造函数中禁止使用非法正则语句
    "no-invalid-regexp": 2,
    //禁止使用不规则的空白符
    "no-irregular-whitespace": 2,
    //禁止使用__iterator__属性
    "no-iterator": 2,
    //label和var申明的变量不能重名
    "no-label-var": 2,
    //禁止使用label语句
    "no-labels": [2, {"allowLoop": false, "allowSwitch": false}],
    //禁止使用没有必要的嵌套代码块
    "no-lone-blocks": 2,
    //不要把空格和tab混用
    "no-mixed-spaces-and-tabs": 2,
    //顾名思义,该规则保证了在逻辑表达式、条件表达式、
    //申明语句、数组元素、对象属性、sequences、函数参数中不使用超过一个的空白符。
    "no-multi-spaces": 2,
    //该规则保证了字符串不分两行书写。
    "no-multi-str": 2,
    //空行不能够超过2行
    "no-multiple-empty-lines": [2, { "max": 2 }],
    //该规则保证了不重写原生对象。
    "no-native-reassign": 2,
    //在in操作符左边的操作项不能用! 例如这样写不对的:if ( !a in b) { //dosomething }
    "no-negated-in-lhs": 2,
    //当我们使用new操作符去调用构造函数时,需要把调用结果赋值给一个变量。
    "no-new": 2,
    //该规则保证了不使用new Function(); 语句。
    "no-new-func": 2,
    //不要通过new Object(),来定义对象
    "no-new-object": 2,
    //禁止把require方法和new操作符一起使用。
    "no-new-require": 2,
    //当定义字符串、数字、布尔值就不要使用构造函数了,String、Number、Boolean
    "no-new-wrappers": 2,
    //禁止无意得把全局对象当函数调用了,比如下面写法错误的:Math(), JSON()
    "no-obj-calls": 2,
    //不要使用八进制的语法。
    "no-octal": 2,
    //用的少,见官网。http://eslint.org/docs/rules/
    "no-octal-escape": 2,
    //不要使用__proto__
    "no-proto": 2,
    //不要重复申明一个变量
    "no-redeclare": 2,
    //正则表达式中不要使用空格
    "no-regex-spaces": 2,
    //return语句中不要写赋值语句
    "no-return-assign": 2,
    //不要和自身作比较
    "no-self-compare": 2,
    //不要使用逗号操作符,详见官网
    "no-sequences": 2,
    //禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等。
    "no-shadow-restricted-names": 2,
    //函数调用时,圆括号前面不能有空格
    "no-spaced-func": 2,
    //禁止使用稀疏数组
    "no-sparse-arrays": 2,
    //在调用super之前不能使用this对象
    "no-this-before-super": 2,
    //严格限制了抛出错误的类型,简单来说只能够抛出Error生成的错误。但是这条规则并不能够保证你只能够
    //抛出Error错误。详细见官网
    "no-throw-literal": 2,
    //行末禁止加空格
    "no-trailing-spaces": 2,
    //禁止使用没有定义的变量,除非在/*global*/已经申明
    "no-undef": 2,
    //禁止把undefined赋值给一个变量
    "no-undef-init": 2,
    //禁止在不需要分行的时候使用了分行
    "no-unexpected-multiline": 2,
    //禁止使用没有必要的三元操作符,因为用些三元操作符可以使用其他语句替换
    "no-unneeded-ternary": [2, { "defaultAssignment": false }],
    //没有执行不到的代码
    "no-unreachable": 2,
    //没有定义了没有被使用到的变量
    "no-unused-vars": [2, { "vars": "all", "args": "none" }],
    //禁止在不需要使用call()或者apply()的时候使用了这两个方法
    "no-useless-call": 2,
    //不要使用with语句
    "no-with": 2,
    //在某些场景只能使用一个var来申明变量
    "one-var": [2, { "initialized": "never" }],
    //在进行断行时,操作符应该放在行首还是行尾。并且还可以对某些操作符进行重写。
    "operator-linebreak": [2, "after", { "overrides": { "?": "before", ":": "before" } }],
    //使用单引号
    "quotes": [2, "single", "avoid-escape"],
    //在使用parseInt() 方法时,需要传递第二个参数,来帮助解析,告诉方法解析成多少进制。
    "radix": 2,
    //这就是分号党和非分号党关心的了,我们还是选择加分号
    "semi": [2, "always"],
    //该规则规定了分号前后的空格,具体规定如下。
    "semi-spacing": [2, { "before": false, "after": true }],
    //代码块前面需要加空格
    "space-before-blocks": [2, "always"],
    //函数圆括号前面需要加空格
    "space-before-function-paren": [2, "never"],
    //圆括号内部不需要加空格
    "space-in-parens": [2, "never"],
    //操作符前后需要加空格
    "space-infix-ops": 2,
    //一元操作符前后是否需要加空格,单词类操作符需要加,而非单词类操作符不用加
    "space-unary-ops": [2, { "words": true, "nonwords": false }],
    //评论符号`/*` `//`,后面需要留一个空格
    "spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
    //推荐使用isNaN方法,而不要直接和NaN作比较
    "use-isnan": 2,
    //在使用typeof操作符时,作比较的字符串必须是合法字符串eg:'string' 'object'
    "valid-typeof": 2,
    //立即执行函数需要用圆括号包围
    "wrap-iife": [2, "any"],
    //yoda条件语句就是字面量应该写在比较操作符的左边,而变量应该写在比较操作符的右边。
    //而下面的规则要求,变量写在前面,字面量写在右边
    "yoda": [2, "never"],

    "standard/object-curly-even-spacing": [2, "either"],
    "standard/array-bracket-even-spacing": [2, "either"],
    "standard/computed-property-even-spacing": [2, "even"]
  }
}

你可能感兴趣的:(前端技术)