File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "MD013" : false
2
+ "MD013" : false ,
3
+ "MD024" : false
3
4
}
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ Check basic `Beman.Optional26` library usages:
14
14
* local [ ./std_vs_beman.cpp] ( ./std_vs_beman.cpp ) or [ std_vs_beman.cpp@Compiler Explorer] ( https://godbolt.org/z/ds5MvfGe6 )
15
15
* local [ ./concept_checks.cpp] ( ./concep_checks.cpp ) or [ concept_checks.cpp@Compiler Explorer] ( https://godbolt.org/z/7eYb4Wbjc )
16
16
17
-
18
17
### Local Build and Run
19
18
20
19
``` shell
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ struct derived : public base {
36
36
derived (int i, int j) : base(i), m_j(j) {}
37
37
};
38
38
39
- } //
39
+ } // namespace test
40
40
41
41
const auto test_concepts_disabled = [](auto && opt) {
42
42
// The optional type is the opt type without the reference.
@@ -84,7 +84,6 @@ int main() {
84
84
test_concepts_disabled (std::optional<test::derived>{});
85
85
}
86
86
87
-
88
87
{
89
88
// beman::optional26::optional meets range concepts.
90
89
test_concepts_enabled (beman::optional26::optional<int >{});
@@ -103,4 +102,3 @@ int main() {
103
102
//
104
103
// # run example:
105
104
// $ .build/gcc-14/examples/RelWithDebInfo/concept_checks
106
-
Original file line number Diff line number Diff line change @@ -24,3 +24,11 @@ echo "All scripts files were linted."
24
24
# Lint all Markdown files in the project.
25
25
find README.md examples/ -name " *.md" | xargs markdownlint -f || echo " markdownlint failed."
26
26
echo " All Markdown files were linted."
27
+
28
+ # TODO: Lint all YAML files in the project.
29
+ # echo "All YAML files were linted."
30
+
31
+ # TODO: Lint all JSON files in the project.
32
+ # echo "All JSON files were linted."
33
+
34
+ echo " All linters finished."
You can’t perform that action at this time.
0 commit comments