File tree 3 files changed +33
-8
lines changed
3 files changed +33
-8
lines changed Original file line number Diff line number Diff line change 32
32
"editor.formatOnSave" : true ,
33
33
"editor.formatOnType" : true ,
34
34
"files.trimTrailingWhitespace" : true ,
35
- "terminal.integrated.defaultProfile.linux" : " /bin/ bash" ,
35
+ "terminal.integrated.defaultProfile.linux" : " bash" ,
36
36
"yaml.customTags" : [
37
37
" !secret scalar" ,
38
38
" !lambda scalar" ,
Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ venv.bak/
103
103
# mypy
104
104
.mypy_cache /
105
105
106
+ # PlatformIO
107
+ .pio /
108
+
109
+ # ESPHome
106
110
config /
107
111
examples /
108
112
Dockerfile
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 2.0.0" ,
3
- "tasks" : [
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " run" ,
6
+ "type" : " shell" ,
7
+ "command" : " python3 -m esphome dashboard config/" ,
8
+ "problemMatcher" : []
9
+ },
10
+ {
11
+ "label" : " clang-tidy" ,
12
+ "type" : " shell" ,
13
+ "command" : " test -f .gcc-flags.json || pio init --silent --ide atom; ./script/clang-tidy" ,
14
+ "problemMatcher" : [
4
15
{
5
- "label" : " run" ,
6
- "type" : " shell" ,
7
- "command" : " python3 -m esphome dashboard config/" ,
8
- "problemMatcher" : []
16
+ "owner" : " clang-tidy" ,
17
+ "fileLocation" : " absolute" ,
18
+ "pattern" : [
19
+ {
20
+ "regexp" : " ^(.*):(\\ d+):(\\ d+):\\ s+(error):\\ s+(.*) \\ [([a-z0-9,\\ -]+)\\ ]\\ s*$" ,
21
+ "file" : 1 ,
22
+ "line" : 2 ,
23
+ "column" : 3 ,
24
+ "severity" : 4 ,
25
+ "message" : 5
26
+ }
27
+ ]
9
28
}
10
- ]
29
+ ]
30
+ }
31
+ ]
11
32
}
You can’t perform that action at this time.
0 commit comments