File tree Expand file tree Collapse file tree 2 files changed +14
-21
lines changed Expand file tree Collapse file tree 2 files changed +14
-21
lines changed Original file line number Diff line number Diff line change 4
4
"version" : " 2.0.0" ,
5
5
"tasks" : [
6
6
{
7
- "label" : " npm: watch" ,
8
- "type" : " npm" ,
9
- "script" : " watch" ,
10
- "problemMatcher" : " $tsc-watch" ,
11
- "isBackground" : true ,
12
- "presentation" : {
13
- "reveal" : " never"
14
- },
15
- "group" : {
16
- "kind" : " build" ,
17
- "isDefault" : true
18
- }
7
+ "label" : " robotcode: lint fix" ,
8
+ "type" : " shell" ,
9
+ "command" : " hatch run lint:fix" ,
10
+ "problemMatcher" : []
19
11
},
20
12
{
21
- "label" : " npm: compile " ,
22
- "type" : " npm " ,
23
- "script " : " compile " ,
13
+ "label" : " robotcode: lint all " ,
14
+ "type" : " shell " ,
15
+ "command " : " hatch run lint:all " ,
24
16
"problemMatcher" : []
25
- }
17
+ },
26
18
{
27
- "label" : " Python Lint All " ,
19
+ "label" : " robotcode: bump version " ,
28
20
"type" : " shell" ,
29
- "command" : " hatch run lint:all " ,
21
+ "command" : " hatch run build:cz bump " ,
30
22
"problemMatcher" : []
31
23
}
24
+
32
25
]
33
26
}
Original file line number Diff line number Diff line change @@ -106,9 +106,9 @@ matrix.rf.dependencies = [
106
106
features = [" all" ]
107
107
108
108
[envs .lint .scripts ]
109
- typing = [" mypy --install-types --non-interactive {args:.}" ]
110
- style = [" ruff ." , " black --check --diff ." ]
111
- fmt = [" black ." , " ruff --fix ." , " style" ]
109
+ typing = [" mypy --install-types --non-interactive {args:.}" , " npm run compile " ]
110
+ style = [" ruff ." , " black --check --diff ." , " npx eslint . " ]
111
+ fmt = [" black ." , " ruff --fix ." , " style" , " npx eslint --fix . " ]
112
112
all = [" style" , " typing" ]
113
113
114
114
[envs .pages ]
You can’t perform that action at this time.
0 commit comments