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 f88b0ba commit 55cc898Copy full SHA for 55cc898
packages/eslint-config-nest/src/index.ts
@@ -35,6 +35,12 @@ export = {
35
'no-empty-function': 'off',
36
'no-empty-pattern': 'warn',
37
'no-unused-vars': 'off',
38
+ camelcase: [
39
+ 'error',
40
+ {
41
+ properties: 'never',
42
+ },
43
+ ],
44
'@typescript-eslint/no-explicit-any': 'off',
45
},
46
}
packages/eslint-config-vue/src/index.ts
@@ -38,6 +38,12 @@ export = {
'no-console': 'off',
'no-undef': 'off',
47
'@typescript-eslint/no-unused-vars': 'error',
48
'@typescript-eslint/no-explicit-any': 'error',
49
0 commit comments