Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumChamberlain committed Feb 24, 2020
1 parent cba0961 commit f5638d7
Show file tree
Hide file tree
Showing 5 changed files with 982 additions and 129 deletions.
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
"extends": [
// add more generic rulesets here, such as:
// 'eslint:recommended',
"plugin:vue/recommended"
],
"rules": {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"vue/max-attributes-per-line": ["error", {
"singleline": 3,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"vue/html-indent": ["error", "tab", {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}],
"vue/no-v-html": "off"
}
}
Loading

0 comments on commit f5638d7

Please sign in to comment.