File tree 2 files changed +42
-4
lines changed
2 files changed +42
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ Checks : ' -*,
3
+ performance-*,
4
+ llvm-namespace-comment,
5
+ modernize-redundant-void-arg,
6
+ modernize-use-nullptr,
7
+ modernize-use-default,
8
+ modernize-use-override,
9
+ modernize-loop-convert,
10
+ readability-named-parameter,
11
+ readability-redundant-smartptr-get,
12
+ readability-redundant-string-cstr,
13
+ readability-simplify-boolean-expr,
14
+ readability-container-size-empty,
15
+ readability-identifier-naming,
16
+ '
17
+ HeaderFilterRegex : ' '
18
+ AnalyzeTemporaryDtors : false
19
+ CheckOptions :
20
+ - key : llvm-namespace-comment.ShortNamespaceLines
21
+ value : ' 10'
22
+ - key : llvm-namespace-comment.SpacesBeforeComments
23
+ value : ' 2'
24
+ - key : readability-braces-around-statements.ShortStatementLines
25
+ value : ' 2'
26
+ # type names
27
+ - key : readability-identifier-naming.ClassCase
28
+ value : CamelCase
29
+ - key : readability-identifier-naming.EnumCase
30
+ value : CamelCase
31
+ - key : readability-identifier-naming.UnionCase
32
+ value : CamelCase
33
+ # method names
34
+ - key : readability-identifier-naming.MethodCase
35
+ value : camelBack
36
+ ...
Original file line number Diff line number Diff line change @@ -11,11 +11,13 @@ compiler: gcc
11
11
12
12
env :
13
13
global :
14
- - ROS_DISTRO=melodic
15
- - DOCKER_IMAGE=moveit/moveit:master-source
14
+ - ROS_DISTRO=noetic
15
+ - CXXFLAGS="-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls"
16
+ - WARNINGS_OK=false
16
17
matrix :
17
- - TEST="clang-format"
18
- - ROS_DISTRO=melodic
18
+ - TEST="clang-format catkin_lint"
19
+ - TEST="clang-tidy-fix"
20
+ - DOCKER_IMAGE=moveit/moveit:master-source
19
21
20
22
before_install : # Use this to prepare the system to install prerequisites or dependencies
21
23
# Define some config vars
You can’t perform that action at this time.
0 commit comments