├── .bumpversion.cfg ├── .codeclimate.yml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── pull_request_template.md ├── renovate.json5 └── workflows │ ├── python.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .prettierignore ├── .prettierrc.toml ├── .pylintrc ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── ci-prepare-cmd.sh ├── docs ├── api │ ├── cli.md │ ├── index.md │ └── plugins.md ├── autofix_docs.py ├── cli.md ├── configuration.md ├── contributing.md ├── flake8_plugin.md ├── ideas │ ├── Makefile │ │ ├── 0-main.toml │ │ ├── 1-pre-commit.toml │ │ ├── 2-poetry.toml │ │ ├── 3-pytest.toml │ │ └── 4-sphinx.toml │ ├── ini.toml │ ├── lab.py │ ├── semantic-release.toml │ ├── text.toml │ ├── toml.toml │ └── yaml │ │ ├── contains.toml │ │ ├── formatted-yaml.toml │ │ ├── jmespath.toml │ │ ├── lists.toml │ │ ├── merge_lists │ │ ├── merged_style.toml │ │ ├── os_macos.toml │ │ ├── os_ubuntu.toml │ │ ├── os_windows.toml │ │ ├── py310.toml │ │ ├── py311.toml │ │ ├── py312.toml │ │ ├── py38.toml │ │ └── py39.toml │ │ └── present-keys.toml ├── index.md ├── library.md ├── main.py ├── nitpick_section.md ├── plugins.md ├── quickstart.md ├── styles.md ├── stylesheets │ └── extra.css └── troubleshooting.md ├── mega-linter-plugin-nitpick └── nitpick.megalinter-descriptor.yml ├── mkdocs.yml ├── nitpick-style.toml ├── package.json ├── pyproject.toml ├── python-no-poetry.toml ├── setup.cfg ├── src └── nitpick │ ├── __init__.py │ ├── __main__.py │ ├── blender.py │ ├── cli.py │ ├── compat.py │ ├── config.py │ ├── constants.py │ ├── core.py │ ├── exceptions.py │ ├── fields.py │ ├── flake8.py │ ├── generic.py │ ├── plugins │ ├── __init__.py │ ├── base.py │ ├── info.py │ ├── ini.py │ ├── json.py │ ├── text.py │ ├── toml.py │ └── yaml.py │ ├── resources │ ├── __init__.py │ ├── any │ │ ├── __init__.py │ │ ├── codeclimate.toml │ │ ├── commitizen.toml │ │ ├── commitlint.toml │ │ ├── editorconfig.toml │ │ ├── git-legal.toml │ │ ├── pre-commit-hooks.toml │ │ └── prettier.toml │ ├── javascript │ │ ├── __init__.py │ │ └── package-json.toml │ ├── kotlin │ │ ├── __init__.py │ │ └── ktlint.toml │ ├── markdown │ │ ├── __init__.py │ │ └── markdownlint.toml │ ├── presets │ │ ├── __init__.py │ │ └── nitpick.toml │ ├── proto │ │ ├── __init__.py │ │ └── protolint.toml │ ├── python │ │ ├── 310.toml │ │ ├── 311.toml │ │ ├── 312.toml │ │ ├── 313.toml │ │ ├── 314.toml │ │ ├── __init__.py │ │ ├── absent.toml │ │ ├── autoflake.toml │ │ ├── bandit.toml │ │ ├── black.toml │ │ ├── flake8.toml │ │ ├── github-workflow.toml │ │ ├── ipython.toml │ │ ├── isort.toml │ │ ├── mypy.toml │ │ ├── poetry-editable.toml │ │ ├── poetry-venv.toml │ │ ├── poetry.toml │ │ ├── pre-commit-hooks.toml │ │ ├── pylint.toml │ │ ├── radon.toml │ │ ├── readthedocs.toml │ │ ├── sonar-python.toml │ │ └── tox.toml │ ├── shell │ │ ├── __init__.py │ │ ├── bashate.toml │ │ ├── shellcheck.toml │ │ └── shfmt.toml │ └── toml │ │ ├── __init__.py │ │ └── toml-sort.toml │ ├── schemas.py │ ├── style.py │ ├── tomlkit_ext.py │ ├── typedefs.py │ └── violations.py ├── tasks.py ├── tests ├── __init__.py ├── conftest.py ├── data │ ├── hello.py │ ├── pre-commit-config-with-old-repos-yaml-key.toml │ └── typed-style-dir │ │ ├── any │ │ └── editorconfig.toml │ │ ├── markdown │ │ └── markdownlint.toml │ │ └── python │ │ └── black.toml ├── helpers.py ├── resources │ ├── __init__.py │ ├── empty-style.toml │ └── nested_package │ │ ├── __init__.py │ │ └── empty_style.toml ├── test_builtin.py ├── test_builtin │ ├── any │ │ ├── codeclimate │ │ │ └── .codeclimate.yml │ │ ├── commitizen │ │ │ └── .pre-commit-config.yaml │ │ ├── commitlint │ │ │ ├── .pre-commit-config.yaml │ │ │ └── package.json │ │ ├── editorconfig │ │ │ ├── .codeclimate.yml │ │ │ └── .editorconfig │ │ ├── git-legal │ │ │ └── .codeclimate.yml │ │ ├── pre-commit-hooks │ │ │ └── .pre-commit-config.yaml │ │ └── prettier │ │ │ └── .pre-commit-config.yaml │ ├── javascript │ │ └── package-json │ │ │ └── package.json │ ├── kotlin │ │ └── ktlint │ │ │ └── .pre-commit-config.yaml │ ├── markdown │ │ └── markdownlint │ │ │ └── .codeclimate.yml │ ├── preset │ │ └── nitpick │ │ │ ├── .editorconfig │ │ │ ├── .pylintrc │ │ │ ├── setup.cfg │ │ │ └── tox.ini │ ├── proto │ │ └── protolint │ │ │ └── .pre-commit-config.yaml │ ├── python │ │ ├── 310 │ │ │ └── pyproject.toml │ │ ├── 311 │ │ │ └── pyproject.toml │ │ ├── 312 │ │ │ └── pyproject.toml │ │ ├── 313 │ │ │ └── pyproject.toml │ │ ├── 314 │ │ │ └── pyproject.toml │ │ ├── autoflake │ │ │ └── .pre-commit-config.yaml │ │ ├── bandit │ │ │ ├── .codeclimate.yml │ │ │ └── .pre-commit-config.yaml │ │ ├── black │ │ │ ├── .pre-commit-config.yaml │ │ │ └── pyproject.toml │ │ ├── flake8 │ │ │ ├── .codeclimate.yml │ │ │ ├── .pre-commit-config.yaml │ │ │ └── setup.cfg │ │ ├── github-workflow │ │ │ └── .github │ │ │ │ └── workflows │ │ │ │ └── python.yaml │ │ ├── ipython │ │ │ └── pyproject.toml │ │ ├── isort │ │ │ ├── .pre-commit-config.yaml │ │ │ └── setup.cfg │ │ ├── mypy │ │ │ ├── .pre-commit-config.yaml │ │ │ └── setup.cfg │ │ ├── poetry-editable │ │ │ └── pyproject.toml │ │ ├── poetry-venv │ │ │ └── poetry.toml │ │ ├── poetry │ │ │ └── pyproject.toml │ │ ├── pre-commit-hooks │ │ │ └── .pre-commit-config.yaml │ │ ├── pylint │ │ │ ├── .codeclimate.yml │ │ │ ├── .pre-commit-config.yaml │ │ │ ├── .pylintrc │ │ │ └── pyproject.toml │ │ ├── radon │ │ │ └── .codeclimate.yml │ │ ├── readthedocs │ │ │ └── .readthedocs.yaml │ │ ├── sonar-python │ │ │ └── .codeclimate.yml │ │ └── tox │ │ │ └── tox.ini │ ├── real.toml │ ├── real.yaml │ ├── shell │ │ ├── bashate │ │ │ └── .pre-commit-config.yaml │ │ ├── shellcheck │ │ │ ├── .codeclimate.yml │ │ │ └── .pre-commit-config.yaml │ │ └── shfmt │ │ │ └── .pre-commit-config.yaml │ └── toml │ │ └── toml-sort │ │ ├── .pre-commit-config.yaml │ │ └── pyproject.toml ├── test_cache.py ├── test_cli.py ├── test_generic.py ├── test_ini.py ├── test_ini │ ├── 2-actual-editorconfig.ini │ ├── 2-expected-editorconfig.ini │ ├── 2-style.toml │ ├── 3-actual-setup.cfg │ └── 3-expected-setup.cfg ├── test_json.py ├── test_json │ ├── 1-expected-package.json │ ├── 2-actual-package.json │ ├── 2-expected-package.json │ ├── 3-expected.json │ ├── 3-style.toml │ ├── 4-style.toml │ └── package-json-style.toml ├── test_meta.py ├── test_plugin.py ├── test_project.py ├── test_style.py ├── test_text.py ├── test_toml.py ├── test_tomlkit_ext.py ├── test_violations.py ├── test_yaml.py ├── test_yaml │ ├── existing-actual.yaml │ ├── existing-desired.toml │ ├── existing-expected.yaml │ ├── jmes-list-key-desired.toml │ ├── jmes-list-key-expected.yaml │ ├── list-by-hash-desired.toml │ ├── list-by-hash-expected.yaml │ ├── multiple-lists.yaml │ ├── new-desired.toml │ └── new-expected.yaml ├── test_yaml_github_workflows.py ├── test_yaml_github_workflows │ ├── any-order.toml │ ├── any-order.yaml │ ├── dict-search-by-key-actual.yaml │ ├── dict-search-by-key-desired.toml │ ├── dict-search-by-key-expected.yaml │ ├── same-key-actual.yaml │ ├── same-key-desired.toml │ ├── same-key-expected.yaml │ ├── scalar-add-elements-that-do-not-exist-actual.yaml │ ├── scalar-add-elements-that-do-not-exist-desired.toml │ ├── scalar-add-elements-that-do-not-exist-expected.yaml │ ├── wildcard-actual.yaml │ ├── wildcard-desired.toml │ └── wildcard-expected.yaml ├── test_yaml_old_pre_commit.py ├── test_yaml_old_pre_commit │ ├── 1-black.toml │ ├── 1-isort.toml │ └── 2-untouched-pre-commit.yaml ├── test_yaml_pre_commit.py └── test_yaml_pre_commit │ ├── hook-args-add.toml │ ├── hook-args-add.yaml │ ├── hook-args-change.toml │ ├── hook-args-change.yaml │ ├── hook-args.yaml │ ├── uk-actual.yaml │ ├── uk-default-expected.yaml │ ├── uk-default.toml │ ├── uk-empty-expected.yaml │ ├── uk-empty.toml │ ├── uk-override-expected.yaml │ └── uk-override.toml ├── tox.ini └── uv.lock /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/workflows/python.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.prettierrc.toml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/README.md -------------------------------------------------------------------------------- /ci-prepare-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/ci-prepare-cmd.sh -------------------------------------------------------------------------------- /docs/api/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/api/cli.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/api/plugins.md -------------------------------------------------------------------------------- /docs/autofix_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/autofix_docs.py -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/flake8_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/flake8_plugin.md -------------------------------------------------------------------------------- /docs/ideas/Makefile/0-main.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/Makefile/0-main.toml -------------------------------------------------------------------------------- /docs/ideas/Makefile/1-pre-commit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/Makefile/1-pre-commit.toml -------------------------------------------------------------------------------- /docs/ideas/Makefile/2-poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/Makefile/2-poetry.toml -------------------------------------------------------------------------------- /docs/ideas/Makefile/3-pytest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/Makefile/3-pytest.toml -------------------------------------------------------------------------------- /docs/ideas/Makefile/4-sphinx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/Makefile/4-sphinx.toml -------------------------------------------------------------------------------- /docs/ideas/ini.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/ini.toml -------------------------------------------------------------------------------- /docs/ideas/lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/lab.py -------------------------------------------------------------------------------- /docs/ideas/semantic-release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/semantic-release.toml -------------------------------------------------------------------------------- /docs/ideas/text.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/text.toml -------------------------------------------------------------------------------- /docs/ideas/toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/toml.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/contains.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/contains.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/formatted-yaml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/formatted-yaml.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/jmespath.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/jmespath.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/lists.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/lists.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/merged_style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/merged_style.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/os_macos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/os_macos.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/os_ubuntu.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/os_ubuntu.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/os_windows.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/os_windows.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/py310.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/py310.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/py311.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/py311.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/py312.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/py312.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/py38.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/py38.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/merge_lists/py39.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/merge_lists/py39.toml -------------------------------------------------------------------------------- /docs/ideas/yaml/present-keys.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/ideas/yaml/present-keys.toml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/library.md -------------------------------------------------------------------------------- /docs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/main.py -------------------------------------------------------------------------------- /docs/nitpick_section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/nitpick_section.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/styles.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nitpick-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/nitpick-style.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python-no-poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/python-no-poetry.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/nitpick/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/__init__.py -------------------------------------------------------------------------------- /src/nitpick/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/__main__.py -------------------------------------------------------------------------------- /src/nitpick/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/blender.py -------------------------------------------------------------------------------- /src/nitpick/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/cli.py -------------------------------------------------------------------------------- /src/nitpick/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/compat.py -------------------------------------------------------------------------------- /src/nitpick/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/config.py -------------------------------------------------------------------------------- /src/nitpick/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/constants.py -------------------------------------------------------------------------------- /src/nitpick/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/core.py -------------------------------------------------------------------------------- /src/nitpick/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/exceptions.py -------------------------------------------------------------------------------- /src/nitpick/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/fields.py -------------------------------------------------------------------------------- /src/nitpick/flake8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/flake8.py -------------------------------------------------------------------------------- /src/nitpick/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/generic.py -------------------------------------------------------------------------------- /src/nitpick/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/__init__.py -------------------------------------------------------------------------------- /src/nitpick/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/base.py -------------------------------------------------------------------------------- /src/nitpick/plugins/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/info.py -------------------------------------------------------------------------------- /src/nitpick/plugins/ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/ini.py -------------------------------------------------------------------------------- /src/nitpick/plugins/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/json.py -------------------------------------------------------------------------------- /src/nitpick/plugins/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/text.py -------------------------------------------------------------------------------- /src/nitpick/plugins/toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/toml.py -------------------------------------------------------------------------------- /src/nitpick/plugins/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/plugins/yaml.py -------------------------------------------------------------------------------- /src/nitpick/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/__init__.py -------------------------------------------------------------------------------- /src/nitpick/resources/any/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for any language.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/any/codeclimate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/codeclimate.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/commitizen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/commitizen.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/commitlint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/commitlint.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/editorconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/editorconfig.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/git-legal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/git-legal.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/pre-commit-hooks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/pre-commit-hooks.toml -------------------------------------------------------------------------------- /src/nitpick/resources/any/prettier.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/any/prettier.toml -------------------------------------------------------------------------------- /src/nitpick/resources/javascript/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for JavaScript.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/javascript/package-json.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/javascript/package-json.toml -------------------------------------------------------------------------------- /src/nitpick/resources/kotlin/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for Kotlin.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/kotlin/ktlint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/kotlin/ktlint.toml -------------------------------------------------------------------------------- /src/nitpick/resources/markdown/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for Markdown files.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/markdown/markdownlint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/markdown/markdownlint.toml -------------------------------------------------------------------------------- /src/nitpick/resources/presets/__init__.py: -------------------------------------------------------------------------------- 1 | """Style presets.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/presets/nitpick.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/presets/nitpick.toml -------------------------------------------------------------------------------- /src/nitpick/resources/proto/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for Protobuf files.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/proto/protolint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/proto/protolint.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/310.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/310.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/311.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/311.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/312.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/312.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/313.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/313.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/314.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/314.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for Python.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/python/absent.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/absent.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/autoflake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/autoflake.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/bandit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/bandit.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/black.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/black.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/flake8.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/flake8.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/github-workflow.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/github-workflow.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/ipython.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/ipython.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/isort.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/isort.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/mypy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/mypy.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/poetry-editable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/poetry-editable.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/poetry-venv.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/poetry-venv.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/poetry.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/pre-commit-hooks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/pre-commit-hooks.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/pylint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/pylint.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/radon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/radon.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/readthedocs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/readthedocs.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/sonar-python.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/sonar-python.toml -------------------------------------------------------------------------------- /src/nitpick/resources/python/tox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/python/tox.toml -------------------------------------------------------------------------------- /src/nitpick/resources/shell/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for shell scripts.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/shell/bashate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/shell/bashate.toml -------------------------------------------------------------------------------- /src/nitpick/resources/shell/shellcheck.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/shell/shellcheck.toml -------------------------------------------------------------------------------- /src/nitpick/resources/shell/shfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/shell/shfmt.toml -------------------------------------------------------------------------------- /src/nitpick/resources/toml/__init__.py: -------------------------------------------------------------------------------- 1 | """Styles for TOML files.""" 2 | -------------------------------------------------------------------------------- /src/nitpick/resources/toml/toml-sort.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/resources/toml/toml-sort.toml -------------------------------------------------------------------------------- /src/nitpick/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/schemas.py -------------------------------------------------------------------------------- /src/nitpick/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/style.py -------------------------------------------------------------------------------- /src/nitpick/tomlkit_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/tomlkit_ext.py -------------------------------------------------------------------------------- /src/nitpick/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/typedefs.py -------------------------------------------------------------------------------- /src/nitpick/violations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/src/nitpick/violations.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/hello.py: -------------------------------------------------------------------------------- 1 | """Some empty Python file.""" 2 | 3 | x = 1 4 | print(x) 5 | -------------------------------------------------------------------------------- /tests/data/pre-commit-config-with-old-repos-yaml-key.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/data/pre-commit-config-with-old-repos-yaml-key.toml -------------------------------------------------------------------------------- /tests/data/typed-style-dir/any/editorconfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/data/typed-style-dir/any/editorconfig.toml -------------------------------------------------------------------------------- /tests/data/typed-style-dir/markdown/markdownlint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/data/typed-style-dir/markdown/markdownlint.toml -------------------------------------------------------------------------------- /tests/data/typed-style-dir/python/black.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/data/typed-style-dir/python/black.toml -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/resources/__init__.py: -------------------------------------------------------------------------------- 1 | """To test ``PythonPackageURL``.""" 2 | -------------------------------------------------------------------------------- /tests/resources/empty-style.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/nested_package/__init__.py: -------------------------------------------------------------------------------- 1 | """To test ``PythonPackageURL``.""" 2 | -------------------------------------------------------------------------------- /tests/resources/nested_package/empty_style.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin.py -------------------------------------------------------------------------------- /tests/test_builtin/any/codeclimate/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/codeclimate/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/any/commitizen/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/commitizen/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/any/commitlint/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/commitlint/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/any/commitlint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/commitlint/package.json -------------------------------------------------------------------------------- /tests/test_builtin/any/editorconfig/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/editorconfig/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/any/editorconfig/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/editorconfig/.editorconfig -------------------------------------------------------------------------------- /tests/test_builtin/any/git-legal/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/git-legal/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/any/pre-commit-hooks/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/pre-commit-hooks/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/any/prettier/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/any/prettier/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/javascript/package-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/javascript/package-json/package.json -------------------------------------------------------------------------------- /tests/test_builtin/kotlin/ktlint/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/kotlin/ktlint/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/markdown/markdownlint/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/markdown/markdownlint/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/preset/nitpick/.editorconfig: -------------------------------------------------------------------------------- 1 | ../../any/editorconfig/.editorconfig -------------------------------------------------------------------------------- /tests/test_builtin/preset/nitpick/.pylintrc: -------------------------------------------------------------------------------- 1 | ../../python/pylint/.pylintrc -------------------------------------------------------------------------------- /tests/test_builtin/preset/nitpick/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/preset/nitpick/setup.cfg -------------------------------------------------------------------------------- /tests/test_builtin/preset/nitpick/tox.ini: -------------------------------------------------------------------------------- 1 | ../../python/tox/tox.ini -------------------------------------------------------------------------------- /tests/test_builtin/proto/protolint/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/proto/protolint/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/310/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry.dependencies] 2 | python = "^3.10" 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/311/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry.dependencies] 2 | python = "^3.11" 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/312/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry.dependencies] 2 | python = "^3.12" 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/313/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry.dependencies] 2 | python = "^3.13" 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/314/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.poetry.dependencies] 2 | python = "^3.14" 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/autoflake/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/autoflake/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/bandit/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/bandit/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/python/bandit/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/bandit/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/black/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/black/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/black/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 3 | -------------------------------------------------------------------------------- /tests/test_builtin/python/flake8/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/flake8/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/python/flake8/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/flake8/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/flake8/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/flake8/setup.cfg -------------------------------------------------------------------------------- /tests/test_builtin/python/github-workflow/.github/workflows/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/github-workflow/.github/workflows/python.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/ipython/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/ipython/pyproject.toml -------------------------------------------------------------------------------- /tests/test_builtin/python/isort/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/isort/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/isort/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/isort/setup.cfg -------------------------------------------------------------------------------- /tests/test_builtin/python/mypy/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/mypy/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/mypy/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/mypy/setup.cfg -------------------------------------------------------------------------------- /tests/test_builtin/python/poetry-editable/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/poetry-editable/pyproject.toml -------------------------------------------------------------------------------- /tests/test_builtin/python/poetry-venv/poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/poetry-venv/poetry.toml -------------------------------------------------------------------------------- /tests/test_builtin/python/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/poetry/pyproject.toml -------------------------------------------------------------------------------- /tests/test_builtin/python/pre-commit-hooks/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/pre-commit-hooks/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/pylint/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/pylint/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/python/pylint/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/pylint/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/pylint/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/pylint/.pylintrc -------------------------------------------------------------------------------- /tests/test_builtin/python/pylint/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/pylint/pyproject.toml -------------------------------------------------------------------------------- /tests/test_builtin/python/radon/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/radon/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/python/readthedocs/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/readthedocs/.readthedocs.yaml -------------------------------------------------------------------------------- /tests/test_builtin/python/sonar-python/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/sonar-python/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/python/tox/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/python/tox/tox.ini -------------------------------------------------------------------------------- /tests/test_builtin/real.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/real.toml -------------------------------------------------------------------------------- /tests/test_builtin/real.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/real.yaml -------------------------------------------------------------------------------- /tests/test_builtin/shell/bashate/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/shell/bashate/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/shell/shellcheck/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/shell/shellcheck/.codeclimate.yml -------------------------------------------------------------------------------- /tests/test_builtin/shell/shellcheck/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/shell/shellcheck/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/shell/shfmt/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/shell/shfmt/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/toml/toml-sort/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/toml/toml-sort/.pre-commit-config.yaml -------------------------------------------------------------------------------- /tests/test_builtin/toml/toml-sort/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_builtin/toml/toml-sort/pyproject.toml -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_generic.py -------------------------------------------------------------------------------- /tests/test_ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini.py -------------------------------------------------------------------------------- /tests/test_ini/2-actual-editorconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini/2-actual-editorconfig.ini -------------------------------------------------------------------------------- /tests/test_ini/2-expected-editorconfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini/2-expected-editorconfig.ini -------------------------------------------------------------------------------- /tests/test_ini/2-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini/2-style.toml -------------------------------------------------------------------------------- /tests/test_ini/3-actual-setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini/3-actual-setup.cfg -------------------------------------------------------------------------------- /tests/test_ini/3-expected-setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_ini/3-expected-setup.cfg -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_json/1-expected-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/1-expected-package.json -------------------------------------------------------------------------------- /tests/test_json/2-actual-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/2-actual-package.json -------------------------------------------------------------------------------- /tests/test_json/2-expected-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/2-expected-package.json -------------------------------------------------------------------------------- /tests/test_json/3-expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/3-expected.json -------------------------------------------------------------------------------- /tests/test_json/3-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/3-style.toml -------------------------------------------------------------------------------- /tests/test_json/4-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/4-style.toml -------------------------------------------------------------------------------- /tests/test_json/package-json-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_json/package-json-style.toml -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_project.py -------------------------------------------------------------------------------- /tests/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_style.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_toml.py -------------------------------------------------------------------------------- /tests/test_tomlkit_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_tomlkit_ext.py -------------------------------------------------------------------------------- /tests/test_violations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_violations.py -------------------------------------------------------------------------------- /tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml.py -------------------------------------------------------------------------------- /tests/test_yaml/existing-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/existing-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml/existing-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/existing-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml/existing-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/existing-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml/jmes-list-key-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/jmes-list-key-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml/jmes-list-key-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/jmes-list-key-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml/list-by-hash-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/list-by-hash-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml/list-by-hash-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/list-by-hash-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml/multiple-lists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/multiple-lists.yaml -------------------------------------------------------------------------------- /tests/test_yaml/new-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/new-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml/new-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml/new-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows.py -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/any-order.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/any-order.toml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/any-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/any-order.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/dict-search-by-key-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/dict-search-by-key-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/dict-search-by-key-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/dict-search-by-key-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/dict-search-by-key-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/dict-search-by-key-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/same-key-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/same-key-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/same-key-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/same-key-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/same-key-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/same-key-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/scalar-add-elements-that-do-not-exist-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/wildcard-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/wildcard-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/wildcard-desired.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/wildcard-desired.toml -------------------------------------------------------------------------------- /tests/test_yaml_github_workflows/wildcard-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_github_workflows/wildcard-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_old_pre_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_old_pre_commit.py -------------------------------------------------------------------------------- /tests/test_yaml_old_pre_commit/1-black.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_old_pre_commit/1-black.toml -------------------------------------------------------------------------------- /tests/test_yaml_old_pre_commit/1-isort.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_old_pre_commit/1-isort.toml -------------------------------------------------------------------------------- /tests/test_yaml_old_pre_commit/2-untouched-pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_old_pre_commit/2-untouched-pre-commit.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit.py -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/hook-args-add.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/hook-args-add.toml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/hook-args-add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/hook-args-add.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/hook-args-change.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/hook-args-change.toml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/hook-args-change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/hook-args-change.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/hook-args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/hook-args.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-actual.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-default-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-default-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-default.toml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-empty-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-empty-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-empty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-empty.toml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-override-expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-override-expected.yaml -------------------------------------------------------------------------------- /tests/test_yaml_pre_commit/uk-override.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tests/test_yaml_pre_commit/uk-override.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreoliwa/nitpick/HEAD/uv.lock --------------------------------------------------------------------------------