Skip to content

Commit b4e4b13

Browse files
committed
markdownlint
1 parent 4c53a6c commit b4e4b13

File tree

4 files changed

+37
-16
lines changed

4 files changed

+37
-16
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
# to native line endings on checkout.
66
*.py text eol=lf
77
*.rst text eol=lf
8+
*.md text eol=lf
89
*.rs text eol=lf
910
*.yaml text eol=lf
1011
*.yml text eol=lf
1112
*.sh text eol=lf
1213
*.cpp text eol=lf
1314
*.hpp text eol=lf
1415
*.patch text eol=lf
16+
.gitattributes text eol=lf
17+
*.txt text eol=lf

README.md

+32-16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# C/C++ Linting Package
23

34
A Python and Rust package for linting C/C++ code with clang-tidy and/or clang-format to collect feedback provided in the form of thread comments, step summary, or file annotations.
@@ -11,42 +12,57 @@ A Python and Rust package for linting C/C++ code with clang-tidy and/or clang-fo
1112
1213
## Usage
1314

14-
For usage in a CI workflow, see [the cpp-linter/cpp-linter-action repository](https://github.com/cpp-linter/cpp-linter-action).
15+
For usage in a CI workflow, see
16+
[the cpp-linter/cpp-linter-action repository](https://github.com/cpp-linter/cpp-linter-action).
1517

16-
For the description of supported Command Line Interface options, see [the CLI documentation](https://cpp-linter.github.io/cpp_linter_rs/cli_args.html).
18+
For the description of supported Command Line Interface options, see
19+
[the CLI documentation](https://cpp-linter.github.io/cpp_linter_rs/cli_args.html).
1720

1821
## Have question or feedback?
1922

20-
To provide feedback (requesting a feature or reporting a bug) please post to [issues](https://github.com/cpp-linter/cpp-linter/issues).
23+
To provide feedback (requesting a feature or reporting a bug) please post to
24+
[issues](https://github.com/cpp-linter/cpp_linter_rs/issues).
2125

2226
## License
2327

2428
The scripts and documentation in this project are released under the [MIT][MIT].
2529

26-
Dependencies (that are redistributed by us in binary form) have the following license agreements:
30+
Dependencies (that are redistributed by us in binary form) have the following
31+
license agreements:
2732

28-
- [clap](https://crates.io/crates/clap): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
29-
- [git2](https://crates.io/crates/git2): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
33+
- [clap](https://crates.io/crates/clap):
34+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
35+
- [git2](https://crates.io/crates/git2):
36+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
3037

3138
The following are conditionally included in binaries (using the `openssl-vendored` feature on a
3239
case-by-case basis) because it is a dependency of git2:
3340

3441
- [openssl](https://crates.io/crates/openssl): Licensed under [Apache 2.0][Apache2]
35-
- [openssl-probe](https://crates.io/crates/openssl-probe) : Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
36-
37-
- [lenient_semver](https://crates.io/crates/lenient_semver): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
38-
- [log](https://crates.io/crates/log): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
39-
- [regex](https://crates.io/crates/regex): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
40-
- [reqwest](https://crates.io/crates/reqwest): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
41-
- [semver](https://crates.io/crates/semver): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
42-
- [serde](https://crates.io/crates/serde): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
42+
- [openssl-probe](https://crates.io/crates/openssl-probe):
43+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
44+
45+
- [lenient_semver](https://crates.io/crates/lenient_semver):
46+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
47+
- [log](https://crates.io/crates/log):
48+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
49+
- [regex](https://crates.io/crates/regex):
50+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
51+
- [reqwest](https://crates.io/crates/reqwest):
52+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
53+
- [semver](https://crates.io/crates/semver):
54+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
55+
- [serde](https://crates.io/crates/serde):
56+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
4357
- [serde-xml-rs](https://crates.io/crates/serde-xml-rs): Licensed under [MIT][MIT].
44-
- [serde_json](https://crates.io/crates/serde_json): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
58+
- [serde_json](https://crates.io/crates/serde_json):
59+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
4560
- [which](https://crates.io/crates/which): Licensed under [MIT][MIT].
4661

4762
The python binding uses
4863

49-
- [pyo3](https://crates.io/crates/pyo3): Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
64+
- [pyo3](https://crates.io/crates/pyo3):
65+
Dual-licensed under [Apache 2.0][Apache2] or [MIT][MIT].
5066

5167
[MIT]: https://choosealicense.com/licenses/mit
5268
[Apache2]: https://choosealicense.com/licenses/apache-2.0/

cpp-linter-lib/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# cpp-linter-lib
23

34
This crate contains the the library used as a backend for the

cpp-linter-py/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# cpp-linter
23

34
The python binding for the [cpp_linter_rs][this] project.

0 commit comments

Comments
 (0)