-
Notifications
You must be signed in to change notification settings - Fork 17.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ros2-launch-sitl-with-out-option
- Loading branch information
Showing
1,173 changed files
with
37,707 additions
and
7,938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"__comment": "by buzz try to match common autotest warnings and errors that arent caught by gcc.json or python.json", | ||
"problemMatcher": [ | ||
{ | ||
"owner": "autotest-fail-matcher", | ||
"severity": "error", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*)(TIMEOUT|Build failed|FAILED STEP):(.*)$", | ||
"column": 1, | ||
"code": 2, | ||
"message": 3 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"__comment": "by buzz try to match common autotest warnings and errors that arent caught by gcc.json or python.json", | ||
"problemMatcher": [ | ||
{ | ||
"owner": "autotest-warn-matcher", | ||
"severity": "warning", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*)(WARN|WARNING):(.*)$", | ||
"column": 1, | ||
"code": 2, | ||
"message": 3 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"__comment": "Taken from vscode-cpptools's Extension/package.json gcc rule", | ||
"problemMatcher": [ | ||
{ | ||
"owner": "gcc-problem-matcher", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"severity": 4, | ||
"message": 5 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"__comment": "inspired by https://github.com/microsoft/vscode-python/issues/3828#issuecomment-575439587", | ||
"problemMatcher": [ | ||
{ | ||
"owner": "python-problem-matcher", | ||
"pattern": [ | ||
{ | ||
"regexp": "^.*File \\\"([^\\\"]|.*)\\\", line (\\d+).*", | ||
"file": 1, | ||
"line": 2 | ||
}, | ||
{ | ||
"regexp": "^.*raise.*$" | ||
}, | ||
{ | ||
"regexp": "^\\s*(.*)\\s*$", | ||
"message": 1 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"cSpell.language": "en-GB", | ||
"astyle.astylerc": "${workspaceFolder}/Tools/CodeStyle/astylerc" | ||
"astyle.astylerc": "${workspaceFolder}/Tools/CodeStyle/astylerc", | ||
"Lua.runtime.version": "Lua 5.3" | ||
} |
Oops, something went wrong.