Skip to content

Commit f9f54c4

Browse files
chore: sync files (#11)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: isamu-takagi <isamu-takagi@users.noreply.github.com>
1 parent 318ff81 commit f9f54c4

5 files changed

+25
-2
lines changed

.github/workflows/build-and-test-differential.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ jobs:
4242

4343
- name: Upload coverage to CodeCov
4444
if: ${{ steps.test.outputs.coverage-report-files != '' }}
45-
uses: codecov/codecov-action@v2
45+
uses: codecov/codecov-action@v3
4646
with:
4747
files: ${{ steps.test.outputs.coverage-report-files }}
4848
fail_ci_if_error: false
4949
verbose: true
50+
flags: differential
5051

5152
clang-tidy-differential:
5253
runs-on: ubuntu-latest

.github/workflows/build-and-test.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ jobs:
4141

4242
- name: Upload coverage to CodeCov
4343
if: ${{ steps.test.outputs.coverage-report-files != '' }}
44-
uses: codecov/codecov-action@v2
44+
uses: codecov/codecov-action@v3
4545
with:
4646
files: ${{ steps.test.outputs.coverage-report-files }}
4747
fail_ci_if_error: false
4848
verbose: true
49+
flags: total

.markdownlint.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for all rules.
12
default: true
23
MD013: false
34
MD024:
45
siblings_only: true
56
MD033: false
67
MD041: false
78
MD046: false
9+
MD049: false

.prettierrc.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,20 @@
11
printWidth: 100
22
tabWidth: 2
3+
overrides:
4+
- files: package.xml
5+
options:
6+
printWidth: 1000
7+
xmlSelfClosingSpace: false
8+
xmlWhitespaceSensitivity: ignore
9+
10+
- files: "*.launch.xml"
11+
options:
12+
printWidth: 200
13+
xmlSelfClosingSpace: false
14+
xmlWhitespaceSensitivity: ignore
15+
16+
- files: "*.xacro"
17+
options:
18+
printWidth: 200
19+
xmlSelfClosingSpace: false
20+
xmlWhitespaceSensitivity: ignore

CPPLINT.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ filter=-whitespace/parens # we allow closing parenthesis to be on the ne
1111
filter=-whitespace/semicolon # we allow the developer to decide about whitespace after a semicolon
1212
filter=-build/header_guard # we automatically fix the names of header guards using pre-commit
1313
filter=-build/include_order # we use the custom include order
14+
filter=-build/include_subdir # we allow the style of "foo.hpp"

0 commit comments

Comments
 (0)