在 Nuxt 2.0 使用 ESLint 程式碼檢查工具並套用 Airbnb 程式碼風格 Memo's Blog 2018-11-06 ESLint Airbnb, ESLint, JavaScript, Nuxt, Programming, Vue 環境 Windows 7 node 8.11.1 npm 5.6.0 做法使用以下指令安裝。 12npm install -g install-peerdepsinstall-peerdeps --dev eslint-config-airbnb-base 修改 .prettierrc 檔。 123456{ "semi": true, "singleQuote": true, "trailingComma": "all", "arrowParens": "always"} 修改 .eslintrc.js 檔。 1234567891011121314extends: [ 'plugin:vue/recommended', 'plugin:prettier/recommended', 'airbnb-base'],// ...rules: { 'arrow-parens': ['error', 'always'], 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-param-reassign': ['error', { 'props': false }], 'no-return-assign': ['error', 'except-parens'], 'space-before-function-paren': ['error', 'never'],} 程式碼 nuxt-airbnb-preset