prettier rules, remove jest error rule

This commit is contained in:
Ulf Gebhardt 2023-06-09 14:24:58 +02:00
parent d019ea0c14
commit 2c61a09017
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 10 additions and 1 deletions

View File

@ -199,7 +199,7 @@ module.exports = {
'jest/prefer-to-have-length': 'error', 'jest/prefer-to-have-length': 'error',
'jest/valid-expect': 'error', 'jest/valid-expect': 'error',
'@typescript-eslint/unbound-method': 'off', '@typescript-eslint/unbound-method': 'off',
'jest/unbound-method': 'error', // 'jest/unbound-method': 'error',
}, },
}, },
], ],

View File

@ -0,0 +1,9 @@
module.exports = {
semi: false,
printWidth: 100,
singleQuote: true,
trailingComma: "all",
tabWidth: 2,
bracketSpacing: true,
endOfLine: "auto",
};