Skip to content

Commit

Permalink
Remove semi rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Nov 6, 2023
1 parent ea91a9c commit 6d2ba00
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ module.exports = {
"@babel/new-cap": "off", // There are some false positives with this rule (e.g. when a library is using uppercase letters) and TypeScript catches these errors anyway
"@babel/no-invalid-this": "off", // covered by @typescript-eslint/no-invalid-this
"@babel/no-unused-expressions": "off", // covered by @typescript-eslint/no-unused-expressions
"@babel/semi": "off", // covered by @typescript-eslint/semi
// "no-undef": "off", // produces false positive with some TypeScript syntax. This is caught by TypeScript anyway.
"@typescript-eslint/adjacent-overload-signatures": "warn", // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md
"@typescript-eslint/array-type": [
Expand Down Expand Up @@ -284,7 +283,6 @@ module.exports = {
},
], // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/restrict-template-expressions.md
"@typescript-eslint/return-await": ["warn", "in-try-catch"], // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/return-await.md
"@typescript-eslint/semi": ["warn"], // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/semi.md
"@typescript-eslint/sort-type-union-intersection-members":
"off", // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/sort-type-union-intersection-members.md
"@typescript-eslint/strict-boolean-expressions": [
Expand Down

0 comments on commit 6d2ba00

Please sign in to comment.