-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
101 lines (101 loc) · 2.52 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
95
96
97
98
99
100
101
module.exports = {
env: {
// 指定脚本的运行环境。每种环境都有一组特定的预定义全局变量
es6: true,
node: true,
jest: true,
'react-native/react-native': true,
},
extends: [
// 一个配置文件可以从基础配置中继承已启用的规则
'airbnb',
'plugin:react-native/all',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
'prettier/react',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser', // 解析器
parserOptions: {
// 解析器选项
ecmaFeatures: {
jsx: true,
impliedStrict: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: [
// ESLint 支持使用第三方插件。在使用插件之前,你必须使用 npm 安装它。
'react',
'react-native',
],
settings: {
// ESLint 支持在配置文件添加共享设置
'import/resolver': {
typescript: {},
},
},
rules: {
// 启用的规则及其各自的错误级别
'global-require': 0,
'linebreak-style': [2, 'unix'],
'no-console': [
'error',
{
allow: ['warn', 'error', 'info', 'disableYellowBox'],
},
],
'no-param-reassign': ['error', { props: false }],
'no-restricted-globals': 0,
'no-unused-vars': 0,
'no-use-before-define': 0,
'no-underscore-dangle': 0,
'lines-between-class-members': [
2,
'always',
{
exceptAfterSingleLine: true,
},
],
'prefer-destructuring': [
2,
{
array: false,
object: true,
},
],
'import/no-unresolved': 0,
'import/no-extraneous-dependencies': 0,
'import/prefer-default-export': 0,
'react/prefer-stateless-function': 0,
'react/destructuring-assignment': 0,
'react/prop-types': 0,
'react/react-in-jsx-scope': 0,
'react/jsx-filename-extension': [
2,
{
extensions: ['.js', '.jsx', '.tsx'],
},
],
'jsx-a11y/accessible-emoji': 0,
'react-native/no-color-literals': 0,
'react-native/no-raw-text': 0,
'react-native/no-inline-styles': 0,
'@typescript-eslint/explicit-function-return-type': {
allowExpressions: true,
allowTypedFunctionExpressions: true,
},
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-use-before-define': [
2,
{
functions: true,
classes: true,
variables: false,
},
],
'@typescript-eslint/no-unused-vars': [1, { args: 'none' }],
},
}