Created
January 7, 2020 05:54
-
-
Save apgapg/14060e8e829113d9c38fc0ec2b400fa9 to your computer and use it in GitHub Desktop.
ESLint config for vue, vuetify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "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