├── .bellybutton.yml ├── .gitattributes ├── .gitignore ├── .pre-commit-hooks.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── bellybutton ├── __init__.py ├── caching.py ├── cli.py ├── exceptions.py ├── initialization.py ├── linting.py └── parsing.py ├── demo.gif ├── pytest.ini ├── setup.py ├── tests ├── integration │ ├── examples │ │ └── .test.bellybutton.yml │ ├── test_initialization_integration.py │ └── test_parsing_integration.py └── unit │ ├── test_cli.py │ └── test_parsing.py └── tox.ini /.bellybutton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/.bellybutton.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/README.md -------------------------------------------------------------------------------- /bellybutton/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bellybutton/caching.py: -------------------------------------------------------------------------------- 1 | """Caching utilities.""" 2 | -------------------------------------------------------------------------------- /bellybutton/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/bellybutton/cli.py -------------------------------------------------------------------------------- /bellybutton/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/bellybutton/exceptions.py -------------------------------------------------------------------------------- /bellybutton/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/bellybutton/initialization.py -------------------------------------------------------------------------------- /bellybutton/linting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/bellybutton/linting.py -------------------------------------------------------------------------------- /bellybutton/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/bellybutton/parsing.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/demo.gif -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | xfail_strict=true 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration/examples/.test.bellybutton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tests/integration/examples/.test.bellybutton.yml -------------------------------------------------------------------------------- /tests/integration/test_initialization_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tests/integration/test_initialization_integration.py -------------------------------------------------------------------------------- /tests/integration/test_parsing_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tests/integration/test_parsing_integration.py -------------------------------------------------------------------------------- /tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tests/unit/test_cli.py -------------------------------------------------------------------------------- /tests/unit/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tests/unit/test_parsing.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hchasestevens/bellybutton/HEAD/tox.ini --------------------------------------------------------------------------------