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
19 lines (18 loc) · 740 Bytes
/
Copy path.eslintrc.js
File metadata and controls
19 lines (18 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
module.exports = {
"extends": [
require.resolve("@fluidframework/eslint-config-fluid")
],
"parserOptions": {
"project": ["./tsconfig.json"]
},
"rules": {
"@typescript-eslint/strict-boolean-expressions": "off", // Doing undefined checks is nice
"@typescript-eslint/unbound-method": "off", // Used to do binding for react methods
"import/no-internal-modules": "off", // required for dynamically importing css files for react-grid-layout
"import/no-unassigned-import": "off" // required for dynamically importing css files for react-grid-layout
}
}