Skip to content

Commit

Permalink
fix: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed Apr 25, 2024
1 parent c0efa03 commit 2a9ebfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flat-configs/custom/custom-rules/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const typescriptRules: Linter.RulesRecord = {
'@typescript-eslint/naming-convention': [
'error',
{ format: ['camelCase'], leadingUnderscore: 'allow', selector: 'default', trailingUnderscore: 'allow' },
{ format: ['camelCase', 'PascalCase'], selector: 'import' },
{ format: ['camelCase', 'PascalCase'], leadingUnderscore: 'allow', selector: 'import' },
{ format: ['camelCase', 'PascalCase', 'UPPER_CASE'], selector: 'variable' },
{ format: ['camelCase', 'PascalCase'], selector: 'function' },
{ format: ['PascalCase'], selector: 'typeLike' },
Expand Down

0 comments on commit 2a9ebfc

Please sign in to comment.