在團隊協做中,爲避免低級 Bug、產出風格統一的代碼,會預先制定編碼規範。使用 Lint 工具和代碼風格檢測工具,則能夠輔助編碼規範執行,有效控制代碼質量。java
ESLint 由 JavaScript 紅寶書 做者 Nicholas C. Zakas 編寫, 2013 年發佈第一個版本。 NCZ 的初衷不是重複造一個輪子,而是在實際需求得不到 JSHint 團隊響應 的狀況下作出的選擇:以可擴展、每條規則獨立、不內置編碼風格爲理念編寫一個 lint 工具。node
ESLint 主要有如下特色:es6
ESLint 詳盡使用參見 官方文檔 http://eslint.org/docs/user-guide/configuring正則表達式
能夠經過如下三種方式配置 ESLint:express
{
"env": { "browser": true, }, "globals": { "angular": true, }, "rules": { "camelcase": 2, "curly": 2, "brace-style": [2, "1tbs"], "quotes": [2, "single"], "semi": [2, "always"], "space-in-brackets": [2, "never"], "space-infix-ops": 2, } }
.eslintrc 放在項目根目錄,則會應用到整個項目;若是子目錄中也包含 .eslintrc 文件,則子目錄會忽略根目錄的配置文件,應用該目錄中的配置文件。這樣能夠方便地對不一樣環境的代碼應用不一樣的規則。json
{
"name": "mypackage", "version": "0.0.1", "eslintConfig": { "env": { "browser": true, "node": true } } }
代碼文件內配置的規則會覆蓋配置文件裏的規則。數組
{
"env": { "browser": true, "node": true, "commonjs": true }, "ecmaFeatures": { // lambda表達式 "arrowFunctions": true, // 解構賦值 "destructuring": true, // class "classes": true, // http://es6.ruanyifeng.com/#docs/function#函數參數的默認值 "defaultParams": true, // 塊級做用域,容許使用let const "blockBindings": true, // 容許使用模塊,模塊內默認嚴格模式 "modules": true, // 容許字面量定義對象時,用表達式作屬性名 // http://es6.ruanyifeng.com/#docs/object#屬性名錶達式 "objectLiteralComputedProperties": true, // 容許對象字面量方法名簡寫 /*var o = { method() { return "Hello!"; } }; 等同於 var o = { method: function() { return "Hello!"; } }; */ "objectLiteralShorthandMethods": true, /* 對象字面量屬性名簡寫 var foo = 'bar'; var baz = {foo}; baz // {foo: "bar"} // 等同於 var baz = {foo: foo}; */ "objectLiteralShorthandProperties": true, // http://es6.ruanyifeng.com/#docs/function#rest參數 "restParams": true, // http://es6.ruanyifeng.com/#docs/function#擴展運算符 "spread": true, // http://es6.ruanyifeng.com/#docs/iterator#for---of循環 "forOf": true, // http://es6.ruanyifeng.com/#docs/generator "generators": true, // http://es6.ruanyifeng.com/#docs/string#模板字符串 "templateStrings": true, "superInFunctions": true, // http://es6.ruanyifeng.com/#docs/object#對象的擴展運算符 "experimentalObjectRestSpread": true }, "rules": { // 定義對象的set存取器屬性時,強制定義get "accessor-pairs": 2, // 指定數組的元素之間要以空格隔開(,後面), never參數:[ 以前和 ] 以後不能帶空格,always參數:[ 以前和 ] 以後必須帶空格 "array-bracket-spacing": [2, "never"], // 在塊級做用域外訪問塊內定義的變量是否報錯提示 "block-scoped-var": 0, // if while function 後面的{必須與if在同一行,java風格。 "brace-style": [2, "1tbs", { "allowSingleLine": true }], // 雙峯駝命名格式 "camelcase": 2, // 數組和對象鍵值對最後一個逗號, never參數:不能帶末尾的逗號, always參數:必須帶末尾的逗號, // always-multiline:多行模式必須帶逗號,單行模式不能帶逗號 "comma-dangle": [2, "never"], // 控制逗號先後的空格 "comma-spacing": [2, { "before": false, "after": true }], // 控制逗號在行尾出現仍是在行首出現 // http://eslint.org/docs/rules/comma-style "comma-style": [2, "last"], // 圈複雜度 "complexity": [2,9], // 以方括號取對象屬性時,[ 後面和 ] 前面是否須要空格, 可選參數 never, always "computed-property-spacing": [2,"never"], // 強制方法必須返回值,TypeScript強類型,不配置 "consistent-return": 0, // 用於指統一在回調函數中指向this的變量名,箭頭函數中的this已經能夠指向外層調用者,應該沒卵用了 // e.g [0,"that"] 指定只能 var that = this. that不能指向其餘任何值,this也不能賦值給that之外的其餘值 "consistent-this": 0, // 強制在子類構造函數中用super()調用父類構造函數,TypeScrip的編譯器也會提示 "constructor-super": 0, // if else while for do後面的代碼塊是否須要{ }包圍,參數: // multi 只有塊中有多行語句時才須要{ }包圍 // multi-line 只有塊中有多行語句時才須要{ }包圍, 可是塊中的執行語句只有一行時, // 塊中的語句只能跟和if語句在同一行。if (foo) foo++; else doSomething(); // multi-or-nest 只有塊中有多行語句時才須要{ }包圍, 若是塊中的執行語句只有一行,執行語句能夠零另起一行也能夠跟在if語句後面 // [2, "multi", "consistent"] 保持先後語句的{ }一致 // default: [2, "all"] 全都須要{ }包圍 "curly": [2, "all"], // switch語句強制default分支,也可添加 // no default 註釋取消這次警告 "default-case": 2, // 強制object.key 中 . 的位置,參數: // property,'.'號應與屬性在同一行 // object, '.' 號應與對象名在同一行 "dot-location": [2, "property"], // 強制使用.號取屬性 // 參數: allowKeywords:true 使用保留字作屬性名時,只能使用.方式取屬性 // false 使用保留字作屬性名時, 只能使用[]方式取屬性 e.g [2, {"allowKeywords": false}] // allowPattern: 當屬性名匹配提供的正則表達式時,容許使用[]方式取值,不然只能用.號取值 e.g [2, {"allowPattern": "^[a-z]+(_[a-z]+)+$"}] "dot-notation": [2, {"allowKeywords": true}], // 文件末尾強制換行 "eol-last": 2, // 使用 === 替代 == "eqeqeq": [2, "allow-null"], // 方法表達式是否須要命名 "func-names": 0, // 方法定義風格,參數: // declaration: 強制使用方法聲明的方式,function f(){} e.g [2, "declaration"] // expression:強制使用方法表達式的方式,var f = function() {} e.g [2, "expression"] // allowArrowFunctions: declaration風格中容許箭頭函數。 e.g [2, "declaration", { "allowArrowFunctions": true }] "func-style": 0, "generator-star-spacing": [2, { "before": true, "after": true }], "guard-for-in": 0, "handle-callback-err": [2, "^(err|error)$" ], "indent": [2, 2, { "SwitchCase": 1 }], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "linebreak-style": 0, "lines-around-comment": 0, "max-nested-callbacks": 0, "new-cap": [2, { "newIsCap": true, "capIsNew": false }], "new-parens": 2, "newline-after-var": 0, "no-alert": 0, "no-array-constructor": 2, "no-caller": 2, "no-catch-shadow": 0, "no-cond-assign": 2, "no-console": 0, "no-constant-condition": 0, "no-continue": 0, "no-control-regex": 2, "no-debugger": 2, "no-delete-var": 2, "no-div-regex": 0, "no-dupe-args": 2, "no-dupe-keys": 2, "no-duplicate-case": 2, "no-else-return": 0, "no-empty": 0, "no-empty-character-class": 2, "no-empty-label": 2, "no-eq-null": 0, "no-eval": 2, "no-ex-assign": 2, "no-extend-native": 2, "no-extra-bind": 2, "no-extra-boolean-cast": 2, "no-extra-parens": 0, "no-extra-semi": 0, "no-fallthrough":