eslint學習筆記css
npm install eslint -g
npm install eslint -save-dev
npm install babel-eslint -save
"parser": "babel-eslint"
npm install eslint-loader -save-dev
// react中 { enforce: "pre", test: /\.js$/, exclude: /node_modules/, loader: "eslint-loader", options:{ configFile:'.eslintrc.js' } }, // vue中 { test: /\.vue$/, loader: 'vue-loader', options: { loaders: { js: [ 'babel-loader', { loader: "eslint-loader", options: { configFile: '.eslintrc.js' } } ], css: 'style-loader!css-loader' } } },
經過.eslintignore文件指定不須要走eslint規範的代碼 html
以後執行webpack的運行命令就能夠看到效果了 vue
// eslint的語法規則 module.exports = { // 開啓推薦配置信息 // "extends": "eslint:recommended", // 默認狀況下,ESLint 會在全部父級目錄裏尋找配置文件,一直到根目錄。若是你想要你全部項目都遵循一個特定的約定時,這將會頗有用,但有時候會致使意想不到的結果。爲了將 ESLint 限制到一個特定的項目,在你項目根目錄下的 package.json 文件或者 .eslintrc.* 文件裏的 eslintConfig 字段下設置 "root": true。ESLint 一旦發現配置文件中有 "root": true,它就會中止在父級目錄中尋找。 "root": true, // 腳本在執行期間訪問的額外的全局變量 // 當訪問未定義的變量時,no-undef 規則將發出警告。若是你想在一個文件裏使用全局變量,推薦你定義這些全局變量,這樣 ESLint 就不會發出警告了。你可使用註釋或在配置文件中定義全局變量。 "globals" : { "window":true, "document":true, "$":true }, // 設置插件 // "plugins": [ // 'html' // ], // 設置解析器選項(必須設置這個屬性) "parserOptions": { "ecmaVersion": 7, "sourceType": "module", "ecmaFeatures": { "jsx": true, // "arrowFunctions": true, // "experimentalObjectRestSpread": true, // "classes": true, // "modules": true, // "defaultParams": true } }, // 啓用的規則及各自的錯誤級別 "rules" : { // 禁止用console "no-console":0, // 禁止用分號 "semi":[2,'never'], // 在同一個做用域中禁止屢次重複定義 "no-redeclare":1 }, // 指定你想啓用的環境 "env": { "browser": true, "node": true }, "parser": "babel-eslint" };
一、本博客中的文章摘自網上的衆多博客,僅做爲本身知識的補充和整理,並分享給其餘須要的coder,不會用於商用node
二、由於不少博客的地址已經記不清楚了,因此不會在這裏標明出處react