File tree 3 files changed +31
-1
lines changed
3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 38
38
],
39
39
2
40
40
],
41
+ "import/extensions" : [
42
+ " error" ,
43
+ " never" ,
44
+ {
45
+ "json" : " always"
46
+ }
47
+ ],
41
48
"import/first" : " error" ,
42
49
"import/newline-after-import" : " error" ,
43
50
"import/no-absolute-path" : " error" ,
44
51
"import/no-duplicates" : " error" ,
45
52
"import/no-extraneous-dependencies" : [" off" , { "devDependencies" : false }],
46
53
"import/no-unassigned-import" : [" error" , { "allow" : [" symbol-observable" ] }],
54
+ "import/no-unused-modules" : [
55
+ " error" ,
56
+ {
57
+ "missingExports" : true ,
58
+ "unusedExports" : true
59
+ }
60
+ ],
47
61
"import/order" : [
48
62
" error" ,
49
63
{
Original file line number Diff line number Diff line change
1
+ Rule | Time (ms) | Relative
2
+ :-------------------------------------------|----------:|--------:
3
+ import/no-unused-modules | 16192.504 | 34.3%
4
+ @typescript-eslint/no-misused-promises | 12934.596 | 27.4%
5
+ @typescript-eslint/no-floating-promises | 6937.194 | 14.7%
6
+ import/order | 2205.970 | 4.7%
7
+ import/no-extraneous-dependencies | 2010.543 | 4.3%
8
+ import/no-duplicates | 1928.831 | 4.1%
9
+ import/extensions | 1304.148 | 2.8%
10
+ @typescript-eslint/no-unnecessary-qualifier | 975.010 | 2.1%
11
+ padding-line-between-statements | 502.669 | 1.1%
12
+ max-len | 199.775 | 0.4%
13
+
14
+ real 1m21.717s
15
+ user 0m0.168s
16
+ sys 0m0.399s
Original file line number Diff line number Diff line change 23
23
"build" : " node ./bin/devkit-admin build" ,
24
24
"build:bazel" : " node ./bin/devkit-admin build-bazel" ,
25
25
"build-tsc" : " tsc -p tsconfig.json" ,
26
- "lint" : " eslint --cache -- max-warnings=0 \" **/*.ts\" " ,
26
+ "lint" : " eslint --max-warnings=0 \" **/*.ts\" " ,
27
27
"ng-dev" : " cross-env TS_NODE_PROJECT=$PWD/.ng-dev/tsconfig.json TS_NODE_TRANSPILE_ONLY=1 node --no-warnings --loader ts-node/esm node_modules/@angular/dev-infra-private/ng-dev/bundles/cli.mjs" ,
28
28
"templates" : " node ./bin/devkit-admin templates" ,
29
29
"validate" : " node ./bin/devkit-admin validate" ,
You can’t perform that action at this time.
0 commit comments