We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 17f96c2 + 3ddf2ff commit a2de31bCopy full SHA for a2de31b
nix/formatting.nix
@@ -29,4 +29,5 @@ in
29
stylish = checkFormatting pkgs.stylish-haskell ../scripts/ci/run-stylish.sh;
30
cabal-gild = checkFormatting pkgs.cabal-gild ../scripts/ci/run-cabal-gild.sh;
31
nixpkgs-fmt = checkFormatting pkgs.nixpkgs-fmt ../scripts/ci/run-nixpkgs-fmt.sh;
32
+ dos2unix = checkFormatting pkgs.dos2unix ../scripts/ci/run-dos2unix.sh;
33
}
nix/shell.nix
@@ -10,6 +10,7 @@ hsPkgs.shellFor {
10
pkgs.fd
11
pkgs.nixpkgs-fmt
12
pkgs.stylish-haskell
13
+ pkgs.dos2unix
14
pkgs.cabal-gild
15
pkgs.cabal-hoogle
16
pkgs.ghcid
scripts/ci/run-dos2unix.sh
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env bash
2
+
3
+set -euo pipefail
4
5
+fd -X dos2unix
0 commit comments