2 The lint command lints a package. 4 Copyright 2015 Fetch Robotics Inc. 14 help_text =
"Lint a package in your workspace" 23 if os.path.isfile(args.package):
24 print "Linting file %s" % (args.package)
25 print "-------------" + (
"-" * len(args.package)) +
"\n" 26 for ending
in cpp_endings:
27 if args.package.endswith(ending):
28 sys.exit(
cpplint([args.package]))
29 if args.package.endswith(
".py"):
30 sys.exit(
pep8([args.package]))
31 print "ERROR: can't lint file" 33 elif os.path.isdir(args.package):
34 print "Linting directory %s" % (args.package)
35 print "------------------" + (
"-" * len(args.package)) +
"\n" 38 print "Linting package %s" % (args.package)
39 print "----------------" + (
"-" * len(args.package)) +
"\n" 44 parser.add_argument(
"package", action=
"store",
45 metavar=
"FILE|DIRECTORY|PACKAGE",
46 help=
"File, directory or ROS package to lint")
50 return c2
if c2 != 0
else c1
54 proc = subprocess.Popen([
"catkin_lint",
"--pkg", package,
57 if proc.returncode != 0:
58 print "WARNING: Catkin lint failed" 59 returncode = proc.returncode
62 package_directory = subprocess.check_output([
"rospack",
"find", package]) \
69 for root, _, filenames
in os.walk(directory):
70 for ending
in cpp_endings:
71 for filename
in fnmatch.filter(filenames,
"*"+ending):
72 cpp_files.append(os.path.join(root, filename))
77 for root, _, filenames
in os.walk(directory):
78 for filename
in fnmatch.filter(filenames,
"*.py"):
79 py_files.append(os.path.join(root, filename))
80 returncode =
merge(
pep8(py_files), returncode)
84 cpp_endings = [
".c",
".cpp",
".cc",
".h",
".hpp",
".hh"]
89 proc = subprocess.Popen([
90 "/opt/ros/melodic/lib/roslint/cpplint",
91 "--counting=detailed",
92 "--filter=+,-runtime/references,-runtime/threadsafe_fn",
95 if proc.returncode != 0:
96 print "WARNING: C++ lint failed" 97 return proc.returncode
115 proc = subprocess.Popen([
116 "/opt/ros/melodic/lib/roslint/pep8",
117 "--ignore=" +
",".join(acceptable),
122 if proc.returncode != 0:
123 print "WARNING: Python lint failed" 124 return proc.returncode