forked from temporalio/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
47 lines (47 loc) · 1.04 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
plugins: ['svelte3', '@typescript-eslint', 'vitest'],
ignorePatterns: ['*.cjs', 'prism.js', '/server'],
overrides: [
// This was previously being overwritten by a duplicate and will cause the build to fail.
// {
// files: ['*.svelte'],
// processor: 'svelte3/svelte3',
// },
{
files: ['cypress/**/*.js'],
extends: ['plugin:cypress/recommended'],
},
{
files: ['tests/**/*.spec.ts'],
extends: ['plugin:playwright/playwright-test'],
},
],
settings: {
'svelte3/typescript': () => require('typescript'),
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2019,
},
env: {
browser: true,
es2017: true,
node: true,
},
rules: {
'@typescript-eslint/no-unused-vars': [
1,
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
},
};