[feature] Add prettier to pre-commit hook

This commit is contained in:
Sergey Konovalov
2025-08-31 10:05:49 +03:00
parent e1ef6e03e6
commit 89e48d6bde
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
module.exports = {
'*.js': ['eslint'],
'*.js': ['eslint', 'prettier'],
'*.{json,md,html,css,yml,yaml}': []
};

View File

@ -215,7 +215,7 @@ afterAll(async () => {
await Promise.allSettled(deletionPool);
baseConnector.closePool?.();
}, 10000);//default timeout is 5000ms. increased to 10000ms to prevent timeout on Oracle DB
}, 10000); //default timeout is 5000ms. increased to 10000ms to prevent timeout on Oracle DB
// Assumed that at least default DB was installed and configured.
describe('Base database connector', () => {