-
-
Notifications
You must be signed in to change notification settings - Fork 691
Closed
Labels
Description
I have ESLint and Prettier and all kinds of stuff going on and working fine, but I'm new to Vue.
I'm using Single File Components spread across a couple files like so:
I have Atom's ESLint plugin and get warnings when I'm not adhering to my config, but I don't see any warnings with this plugin.
// package.json
"eslintConfig": {
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "error"
},
"extends": ["plugin:vue/recommended", "prettier-standard"],
"env": {
"browser": true,
"jquery": true
},
"globals": {
"axios": true,
"Vue": true
}
},
Would really appreciate knowing how to get this working. I think it'd help me from making silly mistakes with Vue. Thanks.