generated from adobe/franklin-library
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.js
98 lines (87 loc) · 3.03 KB
/
index.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
/*
* Copyright 2019 Adobe. All rights reserved.
* This file is licensed to you 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 REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
module.exports = {
extends: [
'eslint-config-airbnb-base',
].map(require.resolve),
env: {
node: true,
es6: true,
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2022,
},
plugins: [
'header',
'import',
],
rules: {
strict: 0,
'import/prefer-default-export': 0,
// Forbid multiple statements in one line
'max-statements-per-line': ['error', { max: 1 }],
// Allow for-of loops
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
// Allow return before else & redundant else statements
'no-else-return': 'off',
// allow dangling underscores for 'fields'
'no-underscore-dangle': ['error', {
allowAfterThis: true,
allow: [
'__ow_method',
'__ow_headers',
'__ow_path',
'__ow_user',
'__ow_body',
'__ow_query'],
}],
// allow '_' as a throw-away variable
'no-unused-vars': ['error', {
argsIgnorePattern: '^_$',
varsIgnorePattern: '^_$',
}],
'no-shadow': ['error', {
allow: ['_'],
}],
// don't enforce extension rules
'import/extensions': [2, 'ignorePackages'],
// enforce license header
'header/header': [2, 'block', ['',
{ pattern: ' * Copyright \\d{4} Adobe\\. All rights reserved\\.', template: ' * Copyright 2024 Adobe. All rights reserved.' },
' * This file is licensed to you 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 REPRESENTATIONS',
' * OF ANY KIND, either express or implied. See the License for the specific language',
' * governing permissions and limitations under the License.',
' ',
]],
'id-match': ['error', '^(?!.*?([wW][hH][iI][tT][eE]|[bB][lL][aA][cC][kK]).*[lL][iI][sS][tT]).*$', {
properties: true,
}],
},
settings: {
// see
// - https://github.com/import-js/eslint-plugin-import/issues/1810
// - https://www.npmjs.com/package/eslint-import-resolver-exports
'import/resolver': {
exports: {},
},
},
globals: {
__rootdir: true,
__testdir: true,
},
};