chore(eslint): allow PascalCase for imports

Applies https://github.com/typescript-eslint/typescript-eslint/pull/7841 to our config

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2023-12-07 18:35:09 +01:00
parent e1e8a24d60
commit 422b28fe55

View file

@ -72,6 +72,10 @@ module.exports = {
leadingUnderscore: 'allow', leadingUnderscore: 'allow',
trailingUnderscore: 'allow', trailingUnderscore: 'allow',
}, },
{
selector: 'import',
format: ['camelCase', 'PascalCase'],
},
{ {
selector: 'enumMember', selector: 'enumMember',
format: ['UPPER_CASE'], format: ['UPPER_CASE'],