This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
.eslintrc.js
158 lines (156 loc) · 4.54 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
* Copyright 2024 American Express Travel Related Services Company, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
const allowedDangles = [
// one-app
'__INITIAL_STATE__',
'__render_mode__',
// holocron
'__CLIENT_HOLOCRON_MODULE_MAP__',
'__HOLOCRON_EXTERNALS__',
// redux
'__REDUX_DEVTOOLS_EXTENSION_COMPOSE__',
// prom-client
'_metrics',
// lean-intl
'__addLocaleData',
// webpack
'__webpack_public_path__',
];
module.exports = {
root: true,
extends: 'amex',
plugins: ['es'],
parserOptions: {
babelOptions: {
presets: ['@babel/preset-react'],
},
},
rules: {
'unicorn/prefer-node-protocol': 'error',
'eslint-comments/require-description': ['error', { ignore: ['eslint-enable'] }],
'no-underscore-dangle': ['error', { allow: allowedDangles }],
'default-param-last': 0,
},
overrides: [
{
files: ['__performance__/scripts/**'],
globals: {
__ENV: true,
},
rules: {
// These scripts are not run directly, and the k6 package is a placeholder
'import/no-unresolved': ['error', { ignore: ['k6'] }],
'import/extensions': ['error', 'ignorePackages', { js: 'always' }],
},
},
{
files: [
'**/__mocks__/**',
'**/__tests__/**',
],
extends: 'amex/test',
rules: {
// a lot of tests require changing the environment the file is started in
'global-require': 0,
// this is a server, a lot of console spies are added
'no-console': 0,
'no-underscore-dangle': ['error', { allow: allowedDangles }],
},
},
{
files: ['src/server/**'],
rules: {
// console methods are how we log events
'no-console': 0,
},
},
{
files: [
// Parts of the server that are only used in development
'src/server/devHolocronCDN.js',
'src/server/utils/devCdnFactory.js',
'src/server/utils/watchLocalModules.js',
'src/server/utils/logging/config/development.js',
// Client service worker just needs `@americanexpress/one-service-worker` at build time
'src/client/service-worker/**',
],
rules: {
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
},
},
{
files: ['src/client/service-worker/**'],
rules: {
// for clearer error reporting, having anonymous functions may inhibit us from
// collecting a concise stack trace with the proper names of invoked functions
'prefer-arrow-callback': 'off',
// generally, self is acceptable to use in a service worker script
// we want to allow this behavior throughout
'no-restricted-globals': ['off', 'self'],
},
},
{
// Allow console logs in documentation
files: ['**/*.md/*.{js,javascript,jsx,node}'],
rules: {
'no-console': 0,
},
},
{
files: ['prod-sample/**'],
rules: {
'import/no-unresolved': 'off',
},
},
{
files: ['prod-sample/sample-modules/**'],
rules: {
'react/no-unknown-property': ['error', { ignore: ['css'] }],
},
},
{
files: [
'scripts/**',
'one-app-statics/**',
'__performance__/bin/**',
],
rules: {
// these scripts should be used only during development
'import/no-extraneous-dependencies': ['error', { devDependencies: true, optionalDependencies: true, peerDependencies: false }],
// we need to message the user for DX
'no-console': 'off',
'global-require': 'off',
'import/no-dynamic-require': 'off',
'unicorn/no-process-exit': 'off',
'no-await-in-loop': 'off',
'no-restricted-syntax': 'off',
'no-plusplus': 'off',
},
},
{
files: ['scripts/dangers/**'],
globals: {
danger: 'readonly',
fail: 'readonly',
markdown: 'readonly',
message: 'readonly',
peril: 'readonly',
schedule: 'readonly',
warn: 'readonly',
},
},
],
};