1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Remove disabling of prefer-template eslint rule (#58230)

This commit is contained in:
Kevin Heis
2025-10-30 09:24:12 -07:00
committed by GitHub
parent 4f46d28722
commit 7d1a209660
72 changed files with 234 additions and 250 deletions

View File

@@ -93,14 +93,13 @@ export default [
'no-redeclare': 'off', // Allow function overloads in TypeScript
'i18n-text/no-en': 'off', // This rule causes eslint to not run at all
'filenames/match-regex': 'off', // This rule causes eslint to not run at all
camelcase: 'off', // Many gh apis use underscores, 600+ uses
// Disabled rules to review
'github/no-then': 'off', // 30+
'@typescript-eslint/ban-ts-comment': 'off', // 50+
'no-shadow': 'off', // 150+
'prefer-template': 'off', // 150+
'github/array-foreach': 'off', // 250+
camelcase: 'off', // 600+
'no-console': 'off', // 800+
'@typescript-eslint/no-explicit-any': 'off', // 1000+
},