-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
28 lines (28 loc) · 900 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:playwright/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
ignorePatterns: ['test-html-report/**', 'test-results/**', '.eslintrc.js'],
rules: {
eqeqeq: 'warn',
strict: 'off',
quotes: ['error', 'single'],
indent: ['error', 2],
'space-before-blocks': ['error', 'always'],
'no-trailing-spaces': ['error'],
'@typescript-eslint/no-non-null-asserted-optional-chain': 'warn',
'playwright/missing-playwright-await': 'error',
'playwright/no-focused-test': 'error',
'playwright/no-wait-for-timeout': 'off',
'playwright/no-skipped-test': 'off',
'playwright/expect-expect': 'off',
},
};