forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
31 lines (31 loc) · 844 Bytes
/
.eslintrc.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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
// Default eslintrc for packages without one, or files outside a package
// NOTE:
// - this is very old config (v8/v0 active era) - we don't use it anywhere
// - if nx migration adds any kind of overrides undo these changes as our config setup is not compatible with extending package from root
// TODO:
// - this needs to be re-done when doing whole lint re-structuring within monorepo
// - will be used to follow standard NX linting approach
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"ignorePatterns": [
"**/coverage",
"**/dist",
"**/etc",
"**/lib",
"**/lib-amd",
"**/lib-commonjs",
"**/node_modules",
"**/temp",
"**/*.scss.ts"
]
}