├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── CONTRIBUTING.adoc ├── LICENSE ├── README.adoc ├── pre_commit_hooks ├── __init__.py ├── runner.py ├── sbt_fatal_warnings.py ├── sbt_wartremover.py ├── scalafmt.py └── scalafmt_apply.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/README.adoc -------------------------------------------------------------------------------- /pre_commit_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre_commit_hooks/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/pre_commit_hooks/runner.py -------------------------------------------------------------------------------- /pre_commit_hooks/sbt_fatal_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/pre_commit_hooks/sbt_fatal_warnings.py -------------------------------------------------------------------------------- /pre_commit_hooks/sbt_wartremover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/pre_commit_hooks/sbt_wartremover.py -------------------------------------------------------------------------------- /pre_commit_hooks/scalafmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/pre_commit_hooks/scalafmt.py -------------------------------------------------------------------------------- /pre_commit_hooks/scalafmt_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/pre_commit_hooks/scalafmt_apply.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwaremill/scala-pre-commit-hooks/HEAD/setup.py --------------------------------------------------------------------------------