-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
94 lines (93 loc) · 2.24 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
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
/* eslint-disable @typescript-eslint/no-var-requires */
// @ts-check
const { defineConfig } = require('eslint-define-config')
module.exports = defineConfig({
env: {
node: true,
},
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:markdown/recommended',
'plugin:react-hooks/recommended',
'prettier',
],
globals: {
sleep: true,
prettyFormat: true,
},
parserOptions: {
ecmaVersion: 10,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'react',
'prettier',
'markdown',
'react-hooks',
],
settings: {
react: {
version: 'detect',
},
},
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/ban-ts-comment': 'off',
'no-unused-vars': 'off',
'react/no-unescaped-entities': 'off',
'react/prop-types': 'off',
'react/react-in-jsx-scope': 'off',
'react/display-name': 'off',
'@typescript-eslint/ban-types': [
'error',
{
types: {
// add a custom message, AND tell the plugin how to fix it
Function: {
message: "Don't use `Function` as a type.",
fixWith: '((...args: any[]) => any)',
},
'{}': {
message: 'Use object instead',
fixWith: 'Record<string, any>',
},
},
},
],
},
overrides: [
{
files: ['**/*.md'],
processor: 'markdown/markdown',
},
{
files: ['**/*.md/*.{jsx,tsx}'],
rules: {
'@typescript-eslint/no-unused-vars': 'error',
'no-unused-vars': 'error',
'no-console': 'off',
'react/display-name': 'off',
'react/prop-types': 'off',
},
},
{
files: ['**/*.md/*.{js,ts}'],
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'no-unused-vars': 'off',
'no-console': 'off',
'react/display-name': 'off',
'react/prop-types': 'off',
},
},
],
})