We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7e6e5 commit c76bc4dCopy full SHA for c76bc4d
cpp_linter_hooks/util.py
@@ -32,6 +32,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
32
DEFAULT_CLANG_TIDY_VERSION = get_version_from_dependency("clang-tidy")
33
34
35
+# https://pypi.org/pypi/clang-format/json
36
CLANG_FORMAT_VERSIONS = [
37
"6.0.1",
38
"7.1.0",
@@ -98,8 +99,10 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
98
99
"20.1.7",
100
"20.1.8",
101
"21.1.0",
102
+ "21.1.1",
103
]
104
105
+# https://pypi.org/pypi/clang-tidy/json
106
CLANG_TIDY_VERSIONS = [
107
"13.0.1.1",
108
"14.0.6",
@@ -113,6 +116,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
113
116
"19.1.0.1",
114
117
"20.1.0",
115
118
119
120
121
122
0 commit comments