-
Notifications
You must be signed in to change notification settings - Fork 34
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
Resolved linter semicolon issues. #53
Conversation
…changes to resolve semicolon issues. Fixes #48
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with 1 comment to fix.
.eslintrc.cjs
Outdated
@@ -5,7 +5,7 @@ module.exports = { | |||
root: true, | |||
rules: { | |||
"@typescript-eslint/no-var-requires": "warn", | |||
"@typescript-eslint/no-extra-semi": "warn", | |||
"@typescript-eslint/no-extra-semi": "error", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just remove the entire line. warn
was an override. Setting it to error
is letting it go back to the default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with @Jooms , removing the no-extra-semi line will resolve this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Looking good! |
1cdabd5
Changed rule in .eslintrc.cjs for extra semicolons to show error instead of warning. Resolved extra semicolon issues.