-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patheslint-config-svelte.js
107 lines (96 loc) · 3.12 KB
/
eslint-config-svelte.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import jestDOM from 'eslint-plugin-jest-dom';
import svelte from 'eslint-plugin-svelte';
import tailwind from 'eslint-plugin-tailwindcss';
import testingLibrary from 'eslint-plugin-testing-library';
import globals from 'globals';
import ts from 'typescript-eslint';
import { baseConfig, createConfig } from '@viamrobotics/eslint-config';
/**
* @typedef {import('@viamrobotics/eslint-config').ConfigArray} ConfigArray
*/
/** @type {ConfigArray} */
const baseSvelteConfig = createConfig(
baseConfig,
tailwind.configs['flat/recommended'],
svelte.configs['flat/recommended'],
svelte.configs['flat/prettier'],
// Base options and settings
{
name: 'viam/svelte/base',
languageOptions: {
parserOptions: {
parser: ts.parser,
extraFileExtensions: ['.svelte'],
svelteFeatures: {
experimentalGenerics: true,
},
},
globals: {
...globals.browser,
},
},
settings: {
svelte: {
ignoreWarnings: [
'@typescript-eslint/no-unsafe-assignment',
'@typescript-eslint/no-unsafe-member-access',
],
},
tailwindcss: {
callees: ['classnames', 'cx'],
classRegex: '^(?:class|cx)$',
},
},
rules: {
// TODO(mc, 2024-02-14): Too many false positives
// https://github.com/sveltejs/eslint-plugin-svelte/issues/1073
'svelte/require-stores-init': 'off',
},
},
{
name: 'viam/svelte/svelte-base',
files: ['**/*.svelte', '**/*.svelte.ts'],
rules: {
// Allows us to set option props to `undefined` by default
'no-undef-init': 'off',
// TODO(mc, 2024-11-06): False positive with props
// https://github.com/sveltejs/eslint-plugin-svelte/issues/476
'@typescript-eslint/no-unnecessary-condition': 'off',
// Svelte ESLint parser does not type snippets correctly
// https://github.com/sveltejs/svelte-eslint-parser/issues/657
'@typescript-eslint/no-confusing-void-expression': 'off',
// Svelte ESLint parser can lose function prop types
// https://github.com/sveltejs/svelte-eslint-parser/issues/608
'@typescript-eslint/no-unsafe-call': 'off',
// Svelte ESLint parser can lose types with $props.id() and other runes
'@typescript-eslint/no-unsafe-assignment': 'off',
},
},
{
name: 'viam/svelte/component-testing',
extends: [
jestDOM.configs['flat/recommended'],
testingLibrary.configs['flat/dom'],
],
files: ['**/__tests__/**', '**/*.test.ts', '**/*.spec.ts'],
rules: {
...testingLibrary.configs['flat/dom'].rules,
'testing-library/await-async-events': [
'error',
{ eventModule: ['fireEvent', 'userEvent'] },
],
'testing-library/no-await-sync-events': 'off',
'testing-library/no-node-access': [
'error',
{ allowContainerFirstChild: true },
],
'testing-library/prefer-explicit-assert': [
'error',
{ assertion: 'toBeInTheDocument' },
],
'testing-library/prefer-user-event': 'error',
},
}
);
export { baseSvelteConfig };
export { createConfig } from '@viamrobotics/eslint-config';