├── .gitignore ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.md ├── cmake └── roslint-extras.cmake.em ├── package.xml ├── scripts └── test_wrapper ├── setup.py ├── src └── roslint │ ├── README.md │ ├── __init__.py │ ├── cpplint.py │ ├── cpplint_wrapper.py │ ├── pycodestyle.py │ └── pycodestyle_wrapper.py └── tests ├── CMakeLists.txt ├── clean1.py ├── dirty1.py └── runlint.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | *.sw[po] 3 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/README.md -------------------------------------------------------------------------------- /cmake/roslint-extras.cmake.em: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/cmake/roslint-extras.cmake.em -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/package.xml -------------------------------------------------------------------------------- /scripts/test_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/scripts/test_wrapper -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/setup.py -------------------------------------------------------------------------------- /src/roslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/src/roslint/README.md -------------------------------------------------------------------------------- /src/roslint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/roslint/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/src/roslint/cpplint.py -------------------------------------------------------------------------------- /src/roslint/cpplint_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/src/roslint/cpplint_wrapper.py -------------------------------------------------------------------------------- /src/roslint/pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/src/roslint/pycodestyle.py -------------------------------------------------------------------------------- /src/roslint/pycodestyle_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/src/roslint/pycodestyle_wrapper.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/clean1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/tests/clean1.py -------------------------------------------------------------------------------- /tests/dirty1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/tests/dirty1.py -------------------------------------------------------------------------------- /tests/runlint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros/roslint/HEAD/tests/runlint.py --------------------------------------------------------------------------------