我将“使用更漂亮的格式化程序”和“ ESLint VS代码”扩展名一起使用以进行代码分析和格式化。
现在,请使用给定的命令安装一些软件包,如果需要更多软件包,这些软件包将在您的终端中作为安装错误显示为错误,请也安装它们。
npm i eslint prettier eslint@^5.16.0 eslint-config-prettier eslint-plugin-prettier eslint-config-airbnb eslint-plugin-node eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-react-hooks@^2.5.0 --save-dev
现在,在项目主目录中创建一个新文件名.prettierrc,使用该文件可以配置漂亮扩展的设置,我的设置如下:
{
"singleQuote": true
}
现在,对于ESlint,您可以根据您的要求进行配置,我建议您访问Eslint网站,查看规则(https://eslint.org/docs/rules/)
现在在项目主目录中创建一个文件名.eslintrc.json,使用该文件可以配置eslint,我的配置如下:
{
"extends": ["airbnb", "prettier", "plugin:node/recommended"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error",
"spaced-comment": "off",
"no-console": "warn",
"consistent-return": "off",
"func-names": "off",
"object-shorthand": "off",
"no-process-exit": "off",
"no-param-reassign": "off",
"no-return-await": "off",
"no-underscore-dangle": "off",
"class-methods-use-this": "off",
"prefer-destructuring": ["error", { "object": true, "array": false }],
"no-unused-vars": ["error", { "argsIgnorePattern": "req|res|next|val" }]
}
}
./node_modules/.bin/eslint --init