forked from forcedotcom/sfdx-1commerce-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
19 lines (19 loc) · 788 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
module.exports = {
extends: ['eslint-config-salesforce-typescript', 'eslint-config-salesforce-license'],
rules: {
// TODO These should be removed. The problems were not fixed when enabling linting.
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/restrict-template-expressions': 0,
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/member-ordering': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/restrict-plus-operands': 0,
'@typescript-eslint/prefer-regexp-exec': 0
}
};