We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47d38a commit a4fc6a5Copy full SHA for a4fc6a5
.eslintrc.js
@@ -402,6 +402,13 @@ module.exports = {
402
'prefer-destructuring': 'off',
403
},
404
405
+ // Temporary disable some rules for Playwright tests
406
+ {
407
+ files: ['tests/playwright/**/*.ts*'],
408
+ rules: {
409
+ 'prettier/prettier': 'off',
410
+ },
411
412
],
413
parserOptions: {
414
project: './tsconfig.json',
tsconfig.json
@@ -40,7 +40,8 @@
40
"redisinsight/ui/indexElectron.tsx",
41
"redisinsight/desktop/**/*",
42
"redisinsight/ui/vite-env.d.ts",
43
- "jest.config.cjs"
+ "jest.config.cjs",
44
+ "tests/playwright/**/*"
45
46
"exclude": [
47
"redisinsight/desktop/dll/*",
0 commit comments