Skip to content

Commit 3b58c95

Browse files
fix(eslint-typescript): disable quotes rule (not yet released)
1 parent 6f3da1f commit 3b58c95

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/eslint-config-typescript

packages/eslint-config-typescript/style.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,11 @@ module.exports = {
101101
// with a specific string.
102102
'@typescript-eslint/prefer-string-starts-ends-with': 'warn',
103103

104+
// @TODO: Re-enable once the @eslint-typescript/eslint-plugin is updated to a newer version
104105
// Enforce the consistent use of either backticks, double, or single quotes
105106
// This rule extends the base eslint/quotes rule. It supports all options and features of the
106107
// base rule.
107-
'@typescript-eslint/quotes': style.rules.quotes,
108+
// '@typescript-eslint/quotes': style.rules.quotes,
108109

109110
// Enforce or Disallow Semicolons
110111
// This rule is aimed at ensuring consistent use of semicolons.

0 commit comments

Comments
 (0)