forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
23 lines (22 loc) · 676 Bytes
/
.eslintrc.js
File metadata and controls
23 lines (22 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
module.exports = {
"extends": [
"@fluidframework/eslint-config-fluid/eslint7"
],
"parserOptions": {
"project": ["./tsconfig.json", "./src/test/tsconfig.json"]
},
"rules": {
"@typescript-eslint/no-use-before-define":"off",
"@typescript-eslint/strict-boolean-expressions": "off",
"max-len": "off",
"no-bitwise":"off",
"no-case-declarations":"off",
"no-inner-declarations":"off",
"prefer-arrow/prefer-arrow-functions":"off",
"prefer-template":"off"
}
}