Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

fix[config]: remove deprcated rules from tslint: all config #4862

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/configs/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const rules = {
"no-unsafe-finally": true,
"no-unused-expression": true,
// "no-unused-variable" - deprecated in #3919
"no-use-before-declare": true,
// "no-use-before-declare" - deprecated in #4802,
"no-var-keyword": true,
"no-void-expression": true,
"prefer-conditional-expression": true,
Expand Down Expand Up @@ -297,6 +297,7 @@ export const RULES_EXCLUDED_FROM_ALL_CONFIG = [
"noSwitchCaseFallThrough",
"typeofCompare",
"noUnusedVariable",
"noUseBeforeDeclare",
];

// Exclude typescript-only rules from jsRules, otherwise it's identical.
Expand Down