diff options
author | EuAndreh <eu@euandre.org> | 2020-08-12 07:35:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-12 07:36:13 -0300 |
commit | 2b78863657e9de8c51ea24384b7723aeb760f38c (patch) | |
tree | 1327deb509ed7ff7394ad3e273985c07b71e2aa2 | |
parent | Assert all post refs end with '-post' and TIL refs end with -til (diff) | |
download | euandre.org-2b78863657e9de8c51ea24384b7723aeb760f38c.tar.gz euandre.org-2b78863657e9de8c51ea24384b7723aeb760f38c.tar.xz |
Allow more folders to contain 'FIXME' text
Diffstat (limited to '')
-rw-r--r-- | _config.yml | 1 | ||||
-rw-r--r-- | default.nix | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/_config.yml b/_config.yml index 9896de2..6811678 100644 --- a/_config.yml +++ b/_config.yml @@ -27,6 +27,7 @@ exclude: - scripts/ - result - templates/ + - drafts/ collections: pastebins: diff --git a/default.nix b/default.nix index ce2b0b5..5dd981e 100644 --- a/default.nix +++ b/default.nix @@ -43,7 +43,15 @@ in rec { test = utils.test [ utils.formatNix (utils.shellcheck null) - (utils.fixme [ "utils.nix" "TODOs.org" "_pastebins/" "_posts/" ]) + (utils.fixme [ + "utils.nix" + "TODOs.org" + "_pastebins/" + "_posts/" + "_tils/" + "drafts/" + "templates/" + ]) subtasks.hunspellCheck subtasks.assertContent subtasks.docs |