Skip to content

Commit

Permalink
Merge pull request #55 from Boehringer-Ingelheim/fix/dot-notation-con…
Browse files Browse the repository at this point in the history
…flicts-with-tsconfig

Switching from eslint dot-notation to @typescript-eslint/dot-notation
  • Loading branch information
matzehecht authored Sep 16, 2024
2 parents 1617272 + 0327e74 commit a0b5ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ module.exports = {
'@typescript-eslint/sort-type-constituents': 'off', // disabled due to conflict with eslint-plugin-perfectionist

// eslint: https://github.com/eslint/eslint/tree/main/lib/rules
'@typescript-eslint/dot-notation': ['error', { allowPattern: '^[a-z]+(_[a-z]+)+$' }],
'arrow-body-style': ['error', 'as-needed'],
camelcase: 'warn',
curly: 'error',
'default-case': 'error',
'dot-notation': ['error', { allowPattern: '^[a-z]+(_[a-z]+)+$' }],
eqeqeq: 'error',
'logical-assignment-operators': ['error', 'never'],
'no-console': ['warn', { allow: ['warn', 'error'] }],
Expand Down

0 comments on commit a0b5ae8

Please sign in to comment.