Skip to content

Commit

Permalink
Sync eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinovantes committed Apr 3, 2024
1 parent 3fbc688 commit 49aec53
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ module.exports = {
},
{
selector: 'parameter',
format: ['strictCamelCase'],
leadingUnderscore: 'allow',
format: ['strictCamelCase', 'UPPER_CASE'],
leadingUnderscore: 'allowSingleOrDouble',
trailingUnderscore: 'allowDouble',
},
{
selector: 'memberLike',
Expand All @@ -148,7 +149,12 @@ module.exports = {
match: false,
},
format: ['strictCamelCase', 'UPPER_CASE'],
leadingUnderscore: 'allowDouble',
trailingUnderscore: 'allowDouble',
},
],
'@typescript-eslint/no-unused-vars': ['error', {
argsIgnorePattern: '^_',
}],
},
}

0 comments on commit 49aec53

Please sign in to comment.