-
Notifications
You must be signed in to change notification settings - Fork 7
/
eslint.config.mjs
46 lines (45 loc) · 1020 Bytes
/
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
import js from '@eslint/js';
import vitest from '@vitest/eslint-plugin';
import prettierRecommended from 'eslint-plugin-prettier/recommended';
import react from 'eslint-plugin-react';
import globals from 'globals';
import typescriptEslint from 'typescript-eslint';
/** @type {import("eslint").Linter.Config[]} */
export default [
{
ignores: ['**/storybook-static/', '**/build/'],
},
js.configs.recommended,
...typescriptEslint.configs.recommended,
prettierRecommended,
{
languageOptions: {
globals: {
...globals.node,
},
},
rules: {
'no-prototype-builtins': 'off',
},
},
{
files: ['**/*.js'],
rules: {
'@typescript-eslint/no-require-imports': 'off',
},
},
{
files: ['**/*.test.*'],
...vitest.configs.recommended,
},
{
files: ['demo/**/*.{js,jsx,ts,tsx}'],
...react.configs.flat.recommended,
...react.configs.flat['jsx-runtime'],
settings: {
react: {
version: 'detect',
},
},
},
];