Webpack vue-cli An error with a space and a semicolon
Eslintrc.js This is the Eslint configuration file, as for why Eslint, is to automatically check the code, maintain a consistent code style, thus ensuring the quality of the code.
It is important to note that in the Eslintrc.js file: Rules is a custom check rule, you can override the default check rules, such as to add a semicolon, function to add a space, which is related to the code style
' Rules ': { //Allow paren-less arrow functions ' Arrow-parens ': 0, //Allow async-await ' Generator-star-spacing ': 0, //Allow debugger during development ' No-debugger ': process.env.NODE_ENV = = = ' Production '? 2:0, ' Space-before-function-paren ': 0,//function parameter preceded by a space ' space-before-blocks ': 0,//function block preceded by a space ' semi ': 0// Semicolon Check}
Webpack vue-cli An error with a space and a semicolon