-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.js
45 lines (44 loc) · 1.32 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
/*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*/
module.exports = {
env: {
browser: true,
es6: true,
node: true
},
ignorePatterns: ['.github/**/*.yml', '**/.build', '**/build', '**/dist', '**/node_modules', '**/release', '**/lib'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:import/electron',
'plugin:import/typescript'
],
parser: '@typescript-eslint/parser',
plugins: ['header'],
rules: {
'header/header': [
2,
'block',
[
'\n * This program and the accompanying materials are made available under the terms of the' +
'\n * Eclipse Public License v2.0 which accompanies this distribution, and is available at' +
'\n * https://www.eclipse.org/legal/epl-v20.html' +
'\n *' +
'\n * SPDX-License-Identifier: EPL-2.0' +
'\n *' +
'\n * Copyright Contributors to the Zowe Project.' +
'\n '
],
2
]
}
}