From 666bb63477f8e9b7d66b812ca6d03e79aff80e0e Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 8 Aug 2021 00:48:18 +0200 Subject: [PATCH] add pre-commit config it's sane to have some pre-flight checks, pre-commit makes it easy. ref: https://pre-commit.com/ --- .pre-commit-config.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..ad3c092 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,6 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.0.1 + hooks: + - id: check-merge-conflict + - id: check-toml