-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
52 lines (51 loc) · 1.27 KB
/
eslint.config.mjs
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import pluginJs from '@eslint/js';
import eslintPluginPlaywright from 'eslint-plugin-playwright';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import globals from 'globals';
import tseslint from 'typescript-eslint';
/** @type {import('eslint').Linter.Config[]} */
export default [
{
ignores: [
'allure-report/**',
'allure-results/**',
'package-lock.json',
'playwright-report/**',
'playwright-results/**',
'test-results/**',
'test-report/**',
'src/output/**',
],
},
{ files: ['**/*.ts'] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
{
rules: {
'no-console': ['off', { allow: ['warn', 'error'] }],
},
},
...tseslint.configs.recommended,
{
rules: {
'@typescript-eslint/explicit-function-return-type': 'error',
},
},
eslintPluginPlaywright.configs['flat/recommended'],
{
rules: {
'playwright/no-nested-step': 'off',
'playwright/expect-expect': 'off',
'playwright/no-skipped-test': 'off',
'playwright/no-conditional-in-test': 'off',
},
settings: {
playwright: {
globalAliases: {
test: ['setup'],
},
},
},
},
eslintPluginPrettierRecommended,
];