forked from SalesforceCommerceCloud/commerce-sdk-isomorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
115 lines (115 loc) · 2.56 KB
/
.eslintrc.json
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"env": {
"browser": true,
"es2020": true,
"node": true,
"jest/globals": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint",
"jest",
"header",
"prettier"
],
"reportUnusedDisableDirectives": true,
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"import/extensions": ["error", "ignorePackages", {
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}],
"import/no-extraneous-dependencies": "off",
"header/header": [
2,
"block",
[
"",
{
"pattern": "^ \\* Copyright \\(c\\) \\d{4}, (salesforce.com, inc|Salesforce, Inc)\\.$",
"template": " * Copyright (c) 2022, Salesforce, Inc."
},
" * All rights reserved.",
" * SPDX-License-Identifier: BSD-3-Clause",
" * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause",
" "
]
],
"max-lines": [
"error",
{
"max": 500
}
],
"prettier/prettier": "warn"
},
"overrides": [
{
"files": [
"src/lib/**"
],
"rules": {
"import/no-extraneous-dependencies": "error"
}
},
{
"files": [
"*.jsx",
"src/environment/**"
],
"rules": {
"prettier/prettier": "off"
}
},
{
"files": [
"*.ts",
"*.tsx"
],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"extends": [
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "error"
}
}
],
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
],
"moduleDirectory": [
"node_modules",
"src"
]
}
}
}
}