├── .checkignore ├── .checkmate.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── checkmate ├── .checkmate │ └── db.sqlite ├── __init__.py ├── __main__.py ├── contrib │ ├── __init__.py │ └── plugins │ │ ├── __init__.py │ │ ├── git │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── analyze.py │ │ │ ├── base.py │ │ │ ├── diff.py │ │ │ ├── init.py │ │ │ └── update_stats.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ └── project.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── repository.py │ │ │ ├── repository_pygit2.py │ │ │ └── ssh │ │ ├── models.py │ │ ├── setup.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── analysis │ │ │ ├── __init__.py │ │ │ ├── test_analysis.py │ │ │ └── test_diffing.py │ │ │ ├── data │ │ │ ├── diff_project.tar.gz │ │ │ ├── project.tar.gz │ │ │ ├── simple_project.tar.gz │ │ │ └── test_repository │ │ │ │ └── d3py.tar.gz │ │ │ ├── git │ │ │ ├── __init__.py │ │ │ └── test_git.py │ │ │ ├── helpers.py │ │ │ └── lib │ │ │ ├── __init__.py │ │ │ └── test_repository.py │ │ ├── github │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ └── analyze_pull_requests.py │ │ ├── models.py │ │ └── setup.py │ │ ├── javascript │ │ ├── __init__.py │ │ └── jshint │ │ │ ├── __init__.py │ │ │ ├── analyzer.py │ │ │ ├── issues_data.py │ │ │ ├── js │ │ │ └── json_reporter.js │ │ │ └── setup.py │ │ └── python │ │ ├── __init__.py │ │ ├── metrics │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── issues_data.py │ │ └── setup.py │ │ ├── pep8 │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── issues_data.py │ │ └── setup.py │ │ ├── pyflakes │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── issues_data.py │ │ └── setup.py │ │ └── pylint │ │ ├── __init__.py │ │ ├── analyzer.py │ │ ├── issues_data.py │ │ └── setup.py ├── helpers │ ├── __init__.py │ ├── facts.py │ ├── hashing.py │ ├── issue.py │ └── settings.py ├── lib │ ├── __init__.py │ ├── analysis │ │ ├── __init__.py │ │ └── base.py │ ├── code │ │ ├── __init__.py │ │ └── environment.py │ ├── models.py │ └── stats │ │ ├── __init__.py │ │ ├── helpers.py │ │ └── mapreduce.py ├── management │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── alembic.py │ │ ├── analyze.py │ │ ├── analyzers.py │ │ ├── base.py │ │ ├── compare.py │ │ ├── export.py │ │ ├── info.py │ │ ├── init.py │ │ ├── issues.py │ │ ├── props │ │ │ ├── __init__.py │ │ │ ├── delete.py │ │ │ ├── get.py │ │ │ └── set.py │ │ ├── reset.py │ │ ├── shell.py │ │ ├── snapshots.py │ │ ├── stats.py │ │ ├── summary.py │ │ ├── sync.py │ │ ├── trend.py │ │ └── watch.py │ ├── decorators.py │ └── helpers.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 14361ae029cf_initial_db_layout.py ├── scripts │ ├── __init__.py │ └── manage.py ├── settings │ ├── __init__.py │ ├── base.py │ └── defaults.py └── test │ ├── __init__.py │ ├── data │ ├── project.tar.gz │ └── simple_project.tar.gz │ ├── diff │ ├── __init__.py │ ├── test_basic_diff.py │ └── test_object_diffing.py │ ├── helpers.py │ └── settings │ ├── __init__.py │ ├── test_analyzers.py │ └── test_checkignore.py ├── contributing ├── README.md ├── ecla.pdf └── icla.pdf ├── docs ├── LICENCE.md ├── Makefile ├── README.md ├── _themes │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── flask │ │ ├── layout.html │ │ ├── relations.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── flask_small │ │ ├── layout.html │ │ ├── static │ │ │ └── flasky.css_t │ │ └── theme.conf │ ├── flask_theme_support.py │ └── sphinx_rtd_theme │ │ ├── __init__.py │ │ ├── breadcrumbs.html │ │ ├── footer.html │ │ ├── layout.html │ │ ├── layout_old.html │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── static │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── ribbon.css │ │ │ └── theme.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── js │ │ │ └── theme.js │ │ ├── theme.conf │ │ └── versions.html ├── license.txt ├── make.bat └── source │ ├── _static │ └── img │ │ └── logo.png │ ├── api │ ├── commands.rst │ ├── concepts.rst │ ├── dependencies.rst │ ├── index.rst │ └── plugins.rst │ ├── conf.py │ ├── contents.rst.inc │ ├── index.rst │ ├── integrations │ ├── git.rst │ └── index.rst │ └── tutorials │ ├── basic.rst │ └── index.rst ├── requirements-docs.txt ├── requirements-test.txt ├── requirements.txt └── setup.py /.checkignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.checkmate.yml: -------------------------------------------------------------------------------- 1 | disable: [pylint] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/README.md -------------------------------------------------------------------------------- /checkmate/.checkmate/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/.checkmate/db.sqlite -------------------------------------------------------------------------------- /checkmate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/__main__.py -------------------------------------------------------------------------------- /checkmate/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/__init__.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/analyze.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/base.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/diff.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/init.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/commands/update_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/commands/update_stats.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/hooks/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/hooks/project.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/lib/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/lib/repository.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/lib/repository_pygit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/lib/repository_pygit2.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/lib/ssh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ssh -F "$CONFIG_FILE" $@ 3 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/models.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/__init__.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/analysis/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/analysis/test_analysis.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/analysis/test_diffing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/analysis/test_diffing.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/data/diff_project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/data/diff_project.tar.gz -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/data/project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/data/project.tar.gz -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/data/simple_project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/data/simple_project.tar.gz -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/data/test_repository/d3py.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/data/test_repository/d3py.tar.gz -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/git/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/git/test_git.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/helpers.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/git/test/lib/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/git/test/lib/test_repository.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/github/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/github/commands/analyze_pull_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/github/commands/analyze_pull_requests.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/github/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/github/models.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/github/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/github/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/jshint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/jshint/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/javascript/jshint/analyzer.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/jshint/issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/javascript/jshint/issues_data.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/jshint/js/json_reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/javascript/jshint/js/json_reporter.js -------------------------------------------------------------------------------- /checkmate/contrib/plugins/javascript/jshint/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/javascript/jshint/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/metrics/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/metrics/analyzer.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/metrics/issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/metrics/issues_data.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/metrics/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/metrics/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pep8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pep8/__init__.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pep8/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pep8/analyzer.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pep8/issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pep8/issues_data.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pep8/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pep8/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pyflakes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pyflakes/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pyflakes/analyzer.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pyflakes/issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pyflakes/issues_data.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pyflakes/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pyflakes/setup.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pylint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pylint/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pylint/analyzer.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pylint/issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pylint/issues_data.py -------------------------------------------------------------------------------- /checkmate/contrib/plugins/python/pylint/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/contrib/plugins/python/pylint/setup.py -------------------------------------------------------------------------------- /checkmate/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/helpers/facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/helpers/facts.py -------------------------------------------------------------------------------- /checkmate/helpers/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/helpers/hashing.py -------------------------------------------------------------------------------- /checkmate/helpers/issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/helpers/issue.py -------------------------------------------------------------------------------- /checkmate/helpers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/helpers/settings.py -------------------------------------------------------------------------------- /checkmate/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/lib/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from .base import * 4 | -------------------------------------------------------------------------------- /checkmate/lib/analysis/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/analysis/base.py -------------------------------------------------------------------------------- /checkmate/lib/code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/code/__init__.py -------------------------------------------------------------------------------- /checkmate/lib/code/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/code/environment.py -------------------------------------------------------------------------------- /checkmate/lib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/models.py -------------------------------------------------------------------------------- /checkmate/lib/stats/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/lib/stats/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/stats/helpers.py -------------------------------------------------------------------------------- /checkmate/lib/stats/mapreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/lib/stats/mapreduce.py -------------------------------------------------------------------------------- /checkmate/management/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/__init__.py -------------------------------------------------------------------------------- /checkmate/management/commands/alembic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/alembic.py -------------------------------------------------------------------------------- /checkmate/management/commands/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/analyze.py -------------------------------------------------------------------------------- /checkmate/management/commands/analyzers.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/management/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/base.py -------------------------------------------------------------------------------- /checkmate/management/commands/compare.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/management/commands/export.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/management/commands/info.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/management/commands/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/init.py -------------------------------------------------------------------------------- /checkmate/management/commands/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/issues.py -------------------------------------------------------------------------------- /checkmate/management/commands/props/__init__.py: -------------------------------------------------------------------------------- 1 | import get,set,delete -------------------------------------------------------------------------------- /checkmate/management/commands/props/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/props/delete.py -------------------------------------------------------------------------------- /checkmate/management/commands/props/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/props/get.py -------------------------------------------------------------------------------- /checkmate/management/commands/props/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/props/set.py -------------------------------------------------------------------------------- /checkmate/management/commands/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/reset.py -------------------------------------------------------------------------------- /checkmate/management/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/shell.py -------------------------------------------------------------------------------- /checkmate/management/commands/snapshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/snapshots.py -------------------------------------------------------------------------------- /checkmate/management/commands/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/stats.py -------------------------------------------------------------------------------- /checkmate/management/commands/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/summary.py -------------------------------------------------------------------------------- /checkmate/management/commands/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/sync.py -------------------------------------------------------------------------------- /checkmate/management/commands/trend.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/management/commands/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/commands/watch.py -------------------------------------------------------------------------------- /checkmate/management/decorators.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /checkmate/management/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/management/helpers.py -------------------------------------------------------------------------------- /checkmate/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /checkmate/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/migrations/alembic.ini -------------------------------------------------------------------------------- /checkmate/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/migrations/env.py -------------------------------------------------------------------------------- /checkmate/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/migrations/script.py.mako -------------------------------------------------------------------------------- /checkmate/migrations/versions/14361ae029cf_initial_db_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/migrations/versions/14361ae029cf_initial_db_layout.py -------------------------------------------------------------------------------- /checkmate/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/scripts/__init__.py -------------------------------------------------------------------------------- /checkmate/scripts/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/scripts/manage.py -------------------------------------------------------------------------------- /checkmate/settings/__init__.py: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | 3 | from .base import * 4 | -------------------------------------------------------------------------------- /checkmate/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/settings/base.py -------------------------------------------------------------------------------- /checkmate/settings/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/settings/defaults.py -------------------------------------------------------------------------------- /checkmate/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/__init__.py -------------------------------------------------------------------------------- /checkmate/test/data/project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/data/project.tar.gz -------------------------------------------------------------------------------- /checkmate/test/data/simple_project.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/data/simple_project.tar.gz -------------------------------------------------------------------------------- /checkmate/test/diff/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/test/diff/test_basic_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/diff/test_basic_diff.py -------------------------------------------------------------------------------- /checkmate/test/diff/test_object_diffing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/diff/test_object_diffing.py -------------------------------------------------------------------------------- /checkmate/test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/helpers.py -------------------------------------------------------------------------------- /checkmate/test/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/checkmate/test/settings/__init__.py -------------------------------------------------------------------------------- /checkmate/test/settings/test_analyzers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /checkmate/test/settings/test_checkignore.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/contributing/README.md -------------------------------------------------------------------------------- /contributing/ecla.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/contributing/ecla.pdf -------------------------------------------------------------------------------- /contributing/icla.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/contributing/icla.pdf -------------------------------------------------------------------------------- /docs/LICENCE.md: -------------------------------------------------------------------------------- 1 | ../LICENCE.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/LICENSE -------------------------------------------------------------------------------- /docs/_themes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/README -------------------------------------------------------------------------------- /docs/_themes/flask/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask/layout.html -------------------------------------------------------------------------------- /docs/_themes/flask/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask/relations.html -------------------------------------------------------------------------------- /docs/_themes/flask/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask/static/flasky.css_t -------------------------------------------------------------------------------- /docs/_themes/flask/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask/theme.conf -------------------------------------------------------------------------------- /docs/_themes/flask_small/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask_small/layout.html -------------------------------------------------------------------------------- /docs/_themes/flask_small/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask_small/static/flasky.css_t -------------------------------------------------------------------------------- /docs/_themes/flask_small/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask_small/theme.conf -------------------------------------------------------------------------------- /docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/__init__.py -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/breadcrumbs.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/footer.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/layout.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/layout_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/layout_old.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/search.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/searchbox.html -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/css/ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/css/ribbon.css -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/css/theme.css -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/static/js/theme.js -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/theme.conf -------------------------------------------------------------------------------- /docs/_themes/sphinx_rtd_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/_themes/sphinx_rtd_theme/versions.html -------------------------------------------------------------------------------- /docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/license.txt -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/_static/img/logo.png -------------------------------------------------------------------------------- /docs/source/api/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/api/commands.rst -------------------------------------------------------------------------------- /docs/source/api/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/api/concepts.rst -------------------------------------------------------------------------------- /docs/source/api/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/api/dependencies.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/api/plugins.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contents.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/contents.rst.inc -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/integrations/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/integrations/git.rst -------------------------------------------------------------------------------- /docs/source/integrations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/integrations/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/tutorials/basic.rst -------------------------------------------------------------------------------- /docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantifiedcode/checkmate/HEAD/setup.py --------------------------------------------------------------------------------