-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Bug: conflict between space-before-blocks and switch-colon-spacing #15082
Comments
Hi @morganbarrett, thanks for the issue! I can reproduce this, it seems that those two rules are indeed conflicting: /* eslint
"switch-colon-spacing": "error",
"space-before-blocks": ["error", "never"]
*/
switch(x){
case 9: { // space-before-blocks error
break;
}
}
switch(x){
case 9:{ // switch-colon-spacing error
break;
}
} Since That might be a breaking change, though. @eslint/eslint-tsc thoughts about this? If updating |
I concur. Since that change would a) resolve an unintentional incompatibility between two rules and b) report fewer errors, I don’t see it as a breaking change. |
Agree. 👍 |
I'm working on this. |
Environment
Node version: 16.0.0
npm version: 7.10.0
Local ESLint version: 7.32.0
Global ESLint version: 7.32.0
Operating System: osx 11.4
What parser are you using?
@typescript-eslint/parser
What did you do?
Configuration
What did you expect to happen?
For
space-before-blocks
to acknowledge the rule settings ofswitch-colon-spacing
and behave accordingly.What actually happened?
The two rules conflicted leaving no state where there was not an error.
Participation
Additional comments
No response
The text was updated successfully, but these errors were encountered: