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

Eslint rules to force existing code style #2202

Merged
merged 3 commits into from Aug 13, 2020
Merged
Changes from 1 commit
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
Next Next commit
Added rules to force existing code style
  • Loading branch information
hastom committed Apr 23, 2020
commit 8dd6dfa75efc18b0df11c7f8d8cb78b02d4a8f9e
4 changes: 3 additions & 1 deletion .eslintrc
Expand Up @@ -16,6 +16,7 @@
"jest/globals": true
},
"rules": {
"space-before-function-paren": ["warn"],
"arrow-parens": 0,
"generator-star-spacing": "off",
"indent": "off",
Expand Down Expand Up @@ -55,6 +56,7 @@
"error",
"PascalCase"
],
"vue/require-v-for-key": 0
"vue/require-v-for-key": 0,
"vue/html-closing-bracket-spacing": ["error"]
}
}