File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 4
4
"license" : " MPL-2.0" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "lint" : " npm run lint --workspaces --if-present -- --max-warnings=0" ,
8
- "lint:fix" : " npm run lint --workspaces --if-present -- --fix --max-warnings=0" ,
9
- "typecheck" : " npm run typecheck --workspaces --if-present " ,
7
+ "lint" : " nx run-many -t lint --max-warnings=0" ,
8
+ "lint:fix" : " nx run-many -t lint --fix --max-warnings=0" ,
9
+ "typecheck" : " nx run-many -t typecheck " ,
10
10
"postinstall" : " git submodule update --init --recursive"
11
11
},
12
12
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ module.exports = {
3
3
extends : [ "expo" , "prettier" ] ,
4
4
plugins : [ "prettier" ] ,
5
5
rules : {
6
- // This rule fails if @ironfish /ui hasn't been built yet, so we can disable it
7
- // specifically for that package.
8
- "import/no-unresolved" : [ "error" , { ignore : [ "^@ironfish/ui" ] } ] ,
9
6
"prettier/prettier" : "error" ,
10
7
} ,
11
8
} ;
Original file line number Diff line number Diff line change 16
16
},
17
17
"ios" : {
18
18
"dependsOn" : [" pod-sim" ]
19
+ },
20
+ "lint" : {
21
+ "dependsOn" : [" ^build" ]
22
+ },
23
+ "typecheck" : {
24
+ "dependsOn" : [" ^build" ]
19
25
}
20
26
}
21
27
}
You can’t perform that action at this time.
0 commit comments