0,开始之前

删除package.json内所有和eslint相关的包

删除node_modules并重新npm i

1,安装eslint

执行命令npx eslint --init

1

eslintdaima折行_javascript

2

eslintdaima折行_eslint_02

3

eslintdaima折行_前端_03

4

eslintdaima折行_前端_04

5

eslintdaima折行_eslintdaima折行_05

6

eslintdaima折行_typescript_06

7

eslintdaima折行_前端_07

8

eslintdaima折行_javascript_08

9

eslintdaima折行_typescript_09

10

eslintdaima折行_eslint_10

完成之后会在项目根目录生成.eslint.js文件

// .eslint.js
module.exports = {
  env: {
    browser: true,
    es2021: true
  },
  extends: [
    "plugin:vue/essential",
    "standard"
  ],
  parserOptions: {
    ecmaVersion: "latest",
    parser: "@typescript-eslint/parser",
    sourceType: "module"
  },
  plugins: [
    "vue",
    "@typescript-eslint"
  ],
  rules: {
        quotes: [1, "double"], // 强制使用双引号
        semi: 1, // 末尾分号警告
        indent: "off", // 关闭eslint缩进警告
        "eol-last": ["error", "never"], // 设置不以换行符结尾
        "max-len": ["error", { code: 120 }], // 每行最大长度120字符
        "no-console": 0, // 关闭console报错
        "space-before-function-paren": ["error", "never"], // 禁止函数名前后有空格
        "keyword-spacing": ["error", { before: true, after: true }], // 关键字后面是否要空一格
        "no-debugger": 2, // 禁止使用debugger
  },
  globals: { // 全局变量忽略检测
    configUrl: "readonly"
  }
}

2, 设置保存时自动修复

此时,执行 eslint index.js --fix可以修复已存在 的eslint语法错误

但是每次执行这个命令会很麻烦,所以可以通过修改vscode的配置项,保存时就进行修复

需要用到eslint的vscode插件

0

eslintdaima折行_javascript_11

1

eslintdaima折行_eslint_12

2

eslintdaima折行_eslintdaima折行_13

将以下配置加入settings.json

"editor.formatOnType": true,
    "editor.formatOnSave": true,
    "eslint.codeAction.showDocumentation": {
        "enable": true
    },
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true,
    },
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        "vue"
    ]

此时 ctrl+s 保存代码时就能修复eslint部分错误

3,安装prettier进行代码风格优化

执行npm i prettier -D命令安装prettier

安装完之后 执行npx prettier --write +对应文件 即可进行代码风格格式化,凌乱的代码会变得工整

创建.prettier.js文件

// .prettier.js
module.exports = {
    semi: false,// 格式化不加分号
    singleQuote: false, // 格式化以单引号为主
}

4,保存时自动进行风格优化

需要用到prettier的vscode插件

eslintdaima折行_javascript_14

设置自动保存

将以下配置加入settings.json(同上一步)

//setting.json文件
"[vue]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascript]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "[html]": {
        "editor.defaultFormatter": "vscode.html-language-features"
    },
    "[typescript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[typescriptreact]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascriptreact]": {
        "editor.defaultFormatter": "vscode.typescript-language-features"
    },

eslint和prettier的默认格式化规则有冲突

执行命令npm i eslint @vue/eslint-config-prettier eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue prettier -D

解决eslint和prettier的冲突问题

修改.eslint.js文件为

// eslintrc.js
module.exports = {
  env: {
    browser: true,
    es2021: true,
  },
  extends: [
    "@vue/prettier",
    "plugin:vue/vue3-essential",
    "eslint:recommended",
    "airbnb-base",
  ],
  parserOptions: {
    ecmaVersion: "latest",
    parser: "@typescript-eslint/parser",
    sourceType: "module",
  },
  plugins: ["vue", "@typescript-eslint"],
  rules: {
    quotes: [1, "double"], // 强制使用双引号
    semi: 1, // 末尾分号警告
    indent: "off", // 关闭eslint缩进警告
    "max-len": ["error", { code: 120 }], // 每行最大长度120字符
    "no-console": 0, // 关闭console报错
    "space-before-function-paren": ["error", "never"], // 禁止函数名前后有空格
    "keyword-spacing": ["error", { before: true, after: true }], // 关键字后面是否要空一格
    "no-debugger": 2, // 禁止使用debugger
    "comma-dangle": "off",
  },
  globals: {
    // 全局变量忽略检测
    configUrl: "readonly",
  },
};
// .prettier.js
module.exports = {
    semi: false,// 格式化不加分号
    singleQuote: false, // 格式化以单引号为主
    useTabs: false
}

5,添加.eslintignore文件忽略校验(可根据需要自行添加)

// .eslintignore
/public
/src/utils
/dist

6, 使用路径别名导致的ctrl+左键无法进入对应文件问题

原因是Path Intellisense 插件无法读取别名

解决方法:

vs Code 的setting.json中新增:

"path-intellisense.mappings": {
        "@": "${workspaceRoot}/src",
        "_c": "${workspaceRoot}/src/components",
    },

7,解决路径别名报错问题

.eslintrc.js新增setting

//.eslintrc.js
 settings: {
    "import/resolver": {
      webpack: {
        config: path.join(__dirname, './build/webpack.base.config.js')
      },
      alias: [["/@", "./src"]], //自行配置
    },
  },

8,设置缩进以及行尾序列

eslintdaima折行_eslint_15

eslintdaima折行_javascript_16

eslintdaima折行_typescript_17

eslintdaima折行_eslint_18

根目录下新建文件.editorconfig

root = true
 
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = false
trim_trailing_whitespace = false

9,主动修复

按照上述流程设置完成之后,重启一下vscode

ctrl+s即可实现代码风格统一+代码基础错误修复

目前只实现了基础的一版,像变量或者方法未使用等错误类型还需手动修复 不过eslint都会进行提示

部分错误可以通过快捷修复的方式进行修复

eslintdaima折行_typescript_19

eslintdaima折行_javascript_20

没有快捷修复的地方会有eslint的错误提示;

例如:

eslintdaima折行_typescript_21

错误原因是应使用===全等而非==

手动替换即可;

尽量使用es6的语法例如箭头函数取代匿名函数function

任何情况下尽量不要再使用var关键字,而以caonstlet取而代之

未完待续------

希望大家早日实现全局代码无报红的小目标~