├── .ciocheck ├── .ciocheck-test ├── .coveragerc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── appveyor.yml ├── ciocheck ├── .coveragerc ├── __init__.py ├── config.py ├── files.py ├── format_task.py ├── formatters.py ├── linters.py ├── main.py ├── templates.py ├── tests │ ├── __init__.py │ └── test_linters.py ├── tools.py ├── utils.py └── vcs.py ├── circle.yml ├── conda.recipe └── meta.yaml └── setup.py /.ciocheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.ciocheck -------------------------------------------------------------------------------- /.ciocheck-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.ciocheck-test -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/appveyor.yml -------------------------------------------------------------------------------- /ciocheck/.coveragerc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ciocheck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/__init__.py -------------------------------------------------------------------------------- /ciocheck/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/config.py -------------------------------------------------------------------------------- /ciocheck/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/files.py -------------------------------------------------------------------------------- /ciocheck/format_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/format_task.py -------------------------------------------------------------------------------- /ciocheck/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/formatters.py -------------------------------------------------------------------------------- /ciocheck/linters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/linters.py -------------------------------------------------------------------------------- /ciocheck/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/main.py -------------------------------------------------------------------------------- /ciocheck/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/templates.py -------------------------------------------------------------------------------- /ciocheck/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/tests/__init__.py -------------------------------------------------------------------------------- /ciocheck/tests/test_linters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/tests/test_linters.py -------------------------------------------------------------------------------- /ciocheck/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/tools.py -------------------------------------------------------------------------------- /ciocheck/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/utils.py -------------------------------------------------------------------------------- /ciocheck/vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/ciocheck/vcs.py -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/circle.yml -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContinuumIO/ciocheck/HEAD/setup.py --------------------------------------------------------------------------------