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
21 lines (20 loc) · 675 Bytes
/
.eslintrc.js
File metadata and controls
21 lines (20 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*!
* 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",
"keyword-spacing": "off", // Off because it conflicts with typescript-formatter
"no-case-declarations": "off",
"no-null/no-null": "off",
"prefer-arrow/prefer-arrow-functions": "off"
}
}