Skip to content

Instantly share code, notes, and snippets.

@richardtallent
Last active February 27, 2024 15:40
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save richardtallent/d4452bd0aa23020e999dd9410458df46 to your computer and use it in GitHub Desktop.
Save richardtallent/d4452bd0aa23020e999dd9410458df46 to your computer and use it in GitHub Desktop.
Example eslint config in a package.json
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "es5",
"printWidth": 160
},
"eslintConfig": {
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"Vue": true
},
"settings": {
"import/resolver": {
"webpack": {
"config": "build/webpack.base.conf.js"
}
}
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"rules": {
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"vue/html-indent": "tab",
"comma-dangle": [
"error",
{
"arrays": "ignore",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "ignore"
}
],
"arrow-parens": 0,
"no-tabs": 0,
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"no-console": 1,
"generator-star-spacing": 0,
"vue/max-attributes-per-line": [
3,
{
"singleline": 3
}
],
"vue/html-self-closing": [
2,
{
"html": {
"void": "never",
"normal": "always",
"component": "always"
},
"svg": "always",
"math": "always"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment