Skip to content

Commit a4fc6a5

Browse files
committed
add playwright dir to the party
1 parent d47d38a commit a4fc6a5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.eslintrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,13 @@ module.exports = {
402402
'prefer-destructuring': 'off',
403403
},
404404
},
405+
// Temporary disable some rules for Playwright tests
406+
{
407+
files: ['tests/playwright/**/*.ts*'],
408+
rules: {
409+
'prettier/prettier': 'off',
410+
},
411+
},
405412
],
406413
parserOptions: {
407414
project: './tsconfig.json',

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"redisinsight/ui/indexElectron.tsx",
4141
"redisinsight/desktop/**/*",
4242
"redisinsight/ui/vite-env.d.ts",
43-
"jest.config.cjs"
43+
"jest.config.cjs",
44+
"tests/playwright/**/*"
4445
],
4546
"exclude": [
4647
"redisinsight/desktop/dll/*",

0 commit comments

Comments
 (0)