refactor(backend): Methoden en parameters

This commit is contained in:
Tibo De Peuter 2025-03-23 11:53:36 +01:00
parent 5b31cec5fe
commit 8efce6bee0
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -38,9 +38,15 @@ export default [
'@typescript-eslint/consistent-type-definitions': 'error',
'@typescript-eslint/consistent-type-exports': 'off',
'@typescript-eslint/consistent-type-imports': 'off',
'default-param-last': 'off',
'@typescript-eslint/default-param-last': 'error',
'@typescript-eslint/explicit-function-return-type': 'warn',
'max-params': 'off',
'@typescript-eslint/max-params': ['error', { 'max': 6 }],
'@typescript-eslint/member-ordering': 'warn',
'@typescript-eslint/method-signature-style': 'off', // Don't care about TypeScript strict mode.
'@typescript-eslint/naming-convention': [
'warn',
{ // Enforce that all variables, functions and properties are camelCase
@ -76,6 +82,8 @@ export default [
'@typescript-eslint/no-type-alias': 'off',
'@typescript-eslint/no-unnecessary-parameter-property-assignment': 'error',
'@typescript-eslint/no-unnecessary-type-arguments': 'error',
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
'@typescript-eslint/no-unnecessary-type-constraint': 'error',
@ -99,8 +107,13 @@ export default [
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/parameter-properties': 'off',
'@typescript-eslint/prefer-function-type': 'error',
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
'@typescript-eslint/prefer-reduce-type-parameter': 'error',
'@typescript-eslint/promise-function-async': 'warn',
'no-await-in-loop': 'warn',
@ -119,7 +132,6 @@ export default [
curly: 'error',
'default-case': 'error',
'default-case-last': 'error',
'default-param-last': 'error',
'dot-notation': 'warn',
eqeqeq: 'error',
'func-names': 'warn',