Skip to content

Instantly share code, notes, and snippets.

@apgapg
Created January 7, 2020 05:54
Show Gist options
  • Save apgapg/14060e8e829113d9c38fc0ec2b400fa9 to your computer and use it in GitHub Desktop.
Save apgapg/14060e8e829113d9c38fc0ec2b400fa9 to your computer and use it in GitHub Desktop.
ESLint config for vue, vuetify
{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"moment": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"parser": "babel-eslint"
},
"plugins": [
"vue"
],
"rules": {
"indent": [
"error",
4
],
"sort-keys": "off",
"no-console": "off",
"no-unused-vars": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment