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.
1 parent 88386a3 commit 71d66e6Copy full SHA for 71d66e6
pre-commit.nix
@@ -37,28 +37,20 @@
37
hlint.enable = true;
38
typos.enable = true;
39
typos.settings = {
40
- configuration = ''
41
- [default.extend-words]
42
- substituters = "substituters"
43
- hask = "hask"
44
- lits = "lits"
45
- Nd = "Nd"
46
- anc = "anc"
47
- eit = "eit"
48
-
49
- [type.pdf]
50
- extend-glob = ["*.pdf"]
51
- check-file = false
52
53
- [type.png]
54
- extend-glob = ["*.png"]
55
56
57
- [type.log]
58
- extend-glob = ["*.log"]
59
60
- '';
61
- exclude = "fourmolu.yaml";
+ ignored-words = [
+ "substituters"
+ "hask"
+ "lits"
+ "Nd"
+ "anc"
+ "eit"
+ ];
+ exclude = [
+ "*.pdf"
+ "*.png"
+ "*.log"
+ "fourmolu.yaml"
62
};
63
64
markdownlint.enable = true;
0 commit comments