We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a39eed commit 0a38792Copy full SHA for 0a38792
.eslintrc.cjs
@@ -129,8 +129,9 @@ module.exports = {
129
},
130
{
131
selector: 'parameter',
132
- format: ['strictCamelCase'],
133
- leadingUnderscore: 'allow',
+ format: ['strictCamelCase', 'UPPER_CASE'],
+ leadingUnderscore: 'allowSingleOrDouble',
134
+ trailingUnderscore: 'allowDouble',
135
136
137
selector: 'memberLike',
@@ -148,7 +149,12 @@ module.exports = {
148
149
match: false,
150
151
format: ['strictCamelCase', 'UPPER_CASE'],
152
+ leadingUnderscore: 'allowDouble',
153
154
155
],
156
+ '@typescript-eslint/no-unused-vars': ['error', {
157
+ argsIgnorePattern: '^_',
158
+ }],
159
160
}
0 commit comments