Skip to content

Commit b5ef704

Browse files
authored
fix(eslint-plugin): set default-param-last as an extension rule (#1445)
1 parent d52f519 commit b5ef704

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: packages/eslint-plugin/src/configs/all.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"@typescript-eslint/brace-style": "error",
1111
"@typescript-eslint/consistent-type-assertions": "error",
1212
"@typescript-eslint/consistent-type-definitions": "error",
13+
"default-param-last": "off",
1314
"@typescript-eslint/default-param-last": "error",
1415
"@typescript-eslint/explicit-function-return-type": "error",
1516
"@typescript-eslint/explicit-member-accessibility": "error",

Diff for: packages/eslint-plugin/tools/generate-configs.ts

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const DEFAULT_RULE_SETTING = 'warn';
2424
const BASE_RULES_TO_BE_OVERRIDDEN = new Set([
2525
'brace-style',
2626
'camelcase',
27+
'default-param-last',
2728
'func-call-spacing',
2829
'indent',
2930
'no-array-constructor',

0 commit comments

Comments
 (0)