Skip to content

Commit

Permalink
remove unused components and update eslint + prettier config
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitpanjwani committed Mar 30, 2020
1 parent 742e1e4 commit 2511400
Show file tree
Hide file tree
Showing 8 changed files with 708 additions and 5,232 deletions.
12 changes: 10 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
"root": true,
"extends": [
"plugin:vue/recommended",
"standard"
"eslint:recommended",
"prettier/vue",
"plugin:prettier/recommended"
],
"rules": {
"vue/max-attributes-per-line" : 3
"vue/max-attributes-per-line": ["error", {
"singleline": 10,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}]
}
}
5 changes: 5 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
Loading

0 comments on commit 2511400

Please sign in to comment.