forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
67 lines (65 loc) · 1.64 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
59
60
61
62
63
64
65
66
67
/* Copyright 2021, Milkdown by Mirone. */
const antfu = require('@antfu/eslint-config').default
const header = require('eslint-plugin-header')
const react = require('eslint-plugin-react')
const hooks = require('eslint-plugin-react-hooks')
module.exports = antfu(
{
stylistic: true,
typescript: {
tsconfigPath: 'tsconfig.json',
},
ignores: [
'.idea',
'lib',
'snapshots.js',
'docs',
'CHANGELOG.md',
],
overrides: {
vue: {
'vue/one-component-per-file': 'off',
},
typescript: {
'ts/no-unsafe-assignment': 'off',
'ts/no-unsafe-member-access': 'off',
'ts/no-unsafe-argument': 'off',
'ts/no-unsafe-call': 'off',
'ts/no-unsafe-return': 'off',
'ts/no-floating-promises': 'off',
'ts/restrict-template-expressions': 'off',
'ts/unbound-method': 'off',
'unused-imports/no-unused-vars': 'off',
},
},
},
{
files: ['**/*.ts', '**/*.tsx'],
plugins: {
header,
},
rules: {
'header/header': ['error', 'block', ' Copyright 2021, Milkdown by Mirone. '],
},
},
{
files: ['**/react/**/*.tsx', '**/react/**/*.ts'],
plugins: {
'react': react,
'react-hooks': hooks,
},
settings: {
react: {
version: 'detect',
},
},
rules: {
...react.configs.recommended.rules,
...hooks.configs.recommended.rules,
'jsx-quotes': ['error', 'prefer-double'],
'react/jsx-indent': ['error', 2, { checkAttributes: true, indentLogicalExpressions: true }],
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
},
},
)