forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
64 lines (63 loc) · 1.45 KB
/
.eslintrc.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
/* Copyright 2021, Milkdown by Mirone. */
module.exports = {
extends: [
'@antfu',
],
plugins: ['header'],
settings: {
react: {
version: 'detect',
},
},
ignorePatterns: [
'.idea',
'lib',
'snapshots.js',
'docs',
'CHANGELOG.md',
],
rules: {
'yml/no-empty-mapping-value': 'off',
'unused-imports/no-unused-imports': 'off',
'unused-imports/no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'antfu/top-level-function': 'off',
},
overrides: [
{
files: ['**/theme-nord/**/*.ts'],
extends: [
'plugin:tailwindcss/recommended',
],
rules: {
'tailwindcss/no-custom-classname': 'off',
},
},
{
files: ['**/react/**/*.tsx', '**/react/**/*.ts'],
extends: [
'plugin:react/recommended',
'plugin:react-hooks/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',
},
},
{
files: ['**/table/**/*.ts'],
rules: {
eqeqeq: 'off',
},
},
{
files: ['**/*.ts', '**/*.tsx', '**/*.js'],
rules: {
'header/header': ['error', 'block', ' Copyright 2021, Milkdown by Mirone. '],
},
},
],
}