diff --git a/.eslintrc.js b/.eslintrc.js index 13cea67e7d..186a1bb223 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -186,9 +186,16 @@ module.exports = { }, overrides: [ { - files: ['**/*.types.ts', '**/types.ts'], + files: ['**/*Event.types.ts'], rules: { - camelcase: 'off', + '@typescript-eslint/naming-convention': [ + 'error', + { + leadingUnderscore: 'allow', + selector: 'property', + format: ['snake_case'], + }, + ], }, }, {