Skip to content

Commit

Permalink
fix(@typescript-eslint): require typeLike names to be PascalCase
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Feb 20, 2020
1 parent 52885ac commit c839b33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions @typescript-eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const config = {
{ private: '^_', protected: '^_' }
],
'@typescript-eslint/naming-convention': [
'error'
//
'error',
{ selector: 'typeLike', format: ['PascalCase'] }
],
'@typescript-eslint/no-dynamic-delete': 'error',
'@typescript-eslint/no-extra-non-null-assertion': 'error',
Expand Down

0 comments on commit c839b33

Please sign in to comment.