forked from MetroStar/comet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
58 lines (55 loc) · 1.3 KB
/
eslint.config.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
import globals from 'globals';
import pluginJs from '@eslint/js';
import stylisticTs from '@stylistic/eslint-plugin-ts';
import tseslint from 'typescript-eslint';
import reactPlugin from 'eslint-plugin-react';
export default [
{
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
settings: {
react: {
version: 'detect',
},
},
languageOptions: {
globals: globals.browser,
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
plugins: {
'@stylistic/ts': stylisticTs,
},
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
reactPlugin.configs.flat.recommended,
{
rules: {
// Base Warnings
'no-console': 'warn',
// Stylistic Issues
'@stylistic/ts/quotes': ['error', 'single'],
'@stylistic/ts/indent': ['error', 2],
'@stylistic/ts/semi': ['error', 'always'],
'@stylistic/ts/comma-dangle': ['error', 'always-multiline'],
// TypeScript
'@typescript-eslint/no-unused-vars': 'error',
},
},
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
},
ignores: ['*.stories.tsx'],
},
{
rules: {
'react/react-in-jsx-scope': 'off',
},
ignores: ['*.test.tsx'],
},
];