Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn off new eslint-plugin-vue rules #163

Merged
merged 3 commits into from Oct 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -702,7 +702,7 @@ eslint-config-prettier has been tested with:
- eslint-plugin-react 7.21.4
- eslint-plugin-standard 4.0.1
- eslint-plugin-unicorn 22.0.0
- eslint-plugin-vue 7.0.1
- eslint-plugin-vue 7.1.0

Have new rules been added since those versions? Have we missed any rules? Is there a plugin you would like to see exclusions for? Open an issue or a pull request!

Expand Down
8 changes: 4 additions & 4 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 @@ -54,7 +54,7 @@
"eslint-plugin-react": "7.21.4",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-unicorn": "22.0.0",
"eslint-plugin-vue": "7.0.1",
"eslint-plugin-vue": "7.1.0",
"jest": "26.5.3",
"prettier": "2.1.2",
"replace": "1.2.0",
Expand Down
2 changes: 2 additions & 0 deletions vue.js
Expand Up @@ -5,9 +5,11 @@ module.exports = {
"vue/html-self-closing": 0,
"vue/max-len": 0,

"vue/array-bracket-newline": "off",
"vue/array-bracket-spacing": "off",
"vue/arrow-spacing": "off",
"vue/block-spacing": "off",
"vue/block-tag-newline": "off",
"vue/brace-style": "off",
"vue/comma-dangle": "off",
"vue/comma-spacing": "off",
Expand Down