diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..02ab000be6cea4057b55189104db3d8426e70900 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,29 @@ +ci: + skip: + - treefmt +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.6.0 + hooks: + - id: check-added-large-files + - id: check-ast + - id: check-executables-have-shebangs + - id: check-json + - id: check-merge-conflict + - id: check-symlinks + - id: check-toml + - id: check-yaml + - id: debug-statements + - id: destroyed-symlinks + - id: detect-private-key + - id: end-of-file-fixer + - id: fix-byte-order-marker + - id: mixed-line-ending + - id: trailing-whitespace +- repo: local + hooks: + - id: treefmt + name: treefmt + entry: treefmt + language: system + always_run: true diff --git a/newcomers/default.nix b/newcomers/default.nix index 950b74a948a91c3214d862cb6b2e8cfa304d0815..91308f3930efc3d6ba6011e448f59196748ecea9 100644 --- a/newcomers/default.nix +++ b/newcomers/default.nix @@ -1,7 +1,7 @@ { lib, ldap3, - buildPythonApplication + buildPythonApplication, }: buildPythonApplication { pname = "greet-newcomers"; @@ -26,7 +26,7 @@ buildPythonApplication { description = "Greet gepetto newcomers"; homepage = "https://github.com/gepetto/gepetto-utils/tree/master/newcomers"; license = lib.licenses.bsd2; - maintainers = [lib.maintainers.nim65s ]; + maintainers = [ lib.maintainers.nim65s ]; mainProgram = "greet-newcomers"; }; }