Skip to content

Commit

Permalink
Add new Vue rules coming in the next eslint-plugin-vue version
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Jan 16, 2019
1 parent 6c4d1f0 commit 9072c91
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
11 changes: 5 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,7 +48,7 @@
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-typescript": "1.0.0-rc.1",
"eslint-plugin-unicorn": "6.0.1",
"eslint-plugin-vue": "5.1.0",
"eslint-plugin-vue": "github:vuejs/eslint-plugin-vue#9c49dcc8ff792ec6798037bd6b7f4ac3d26fdf68",
"jest": "23.6.0",
"prettier": "1.15.3",
"replace": "1.0.1",
Expand Down
7 changes: 6 additions & 1 deletion vue.js
Expand Up @@ -4,17 +4,22 @@ module.exports = {
rules: {
"vue/html-self-closing": 0,

"vue/array-bracket-spacing": "off",
"vue/html-closing-bracket-newline": "off",
"vue/html-closing-bracket-spacing": "off",
"vue/html-end-tags": "off",
"vue/html-indent": "off",
"vue/html-quotes": "off",
"vue/key-spacing": "off",
"vue/max-attributes-per-line": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/mustache-interpolation-spacing": "off",
"vue/no-multi-spaces": "off",
"vue/no-spaces-around-equal-signs-in-attribute": "off",
"vue/object-curly-spacing": "off",
"vue/script-indent": "off",
"vue/singleline-html-element-content-newline": "off"
"vue/singleline-html-element-content-newline": "off",
"vue/space-infix-ops": "off",
"vue/space-unary-ops": "off"
}
};

0 comments on commit 9072c91

Please sign in to comment.