ESLint and Prettier Settings for VSCode
ESLint (.eslintrc.cjs)
ESLint is a tool for identifying and reporting on problems in your code.
module.exports = {
root: true,
env: {
node: true,
},
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
parserOptions: {
parser: "babel-eslint",
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/max-attributes-per-line": [
"error",
{
singleline: 10,
multiline: {
max: 1,
},
},
],
},
};
Prettier (.prettierrc)
Prettier is a tool for formatting code.
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "ignore"
}