diff options
author | Ben Sima <ben@bsima.me> | 2022-08-08 09:56:53 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-08-08 09:56:53 -0400 |
commit | e9d639f7d6f21498c450db36d46e1e6ac6c0b17e (patch) | |
tree | 05d826528fe7c4f964f4f97dbf794e22da162883 /Biz | |
parent | af3707e3acd8dc169506109410674f9f054eb1a7 (diff) |
Remove some TODOs
I don't like TODOs in my codebase, I'd rather keep them in org files. Eventually
I need a linter that prevents all TODOs from getting into code.
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Bild.hs | 2 | ||||
-rw-r--r-- | Biz/Bild/Deps.hs | 1 | ||||
-rw-r--r-- | Biz/Cloud/Git.nix | 1 | ||||
-rw-r--r-- | Biz/Dev/Configuration.nix | 2 | ||||
-rw-r--r-- | Biz/Dev/Wireguard.nix | 2 | ||||
-rwxr-xr-x | Biz/Ide/push | 2 |
6 files changed, 4 insertions, 6 deletions
diff --git a/Biz/Bild.hs b/Biz/Bild.hs index 68aa971..75d012f 100644 --- a/Biz/Bild.hs +++ b/Biz/Bild.hs @@ -639,7 +639,7 @@ build andTest loud analysis = do toLog (Local u) = u toLog (Remote u h) = u <> "@" <> h Copy -> do - Log.warn ["bild", "copy", "TODO", nschunk namespace] + Log.warn ["bild", "copy", "not implemented yet", nschunk namespace] pure Exit.ExitSuccess Rustc -> do Log.info ["bild", "dev", "rust", nschunk namespace] diff --git a/Biz/Bild/Deps.hs b/Biz/Bild/Deps.hs index 89c4516..515d04c 100644 --- a/Biz/Bild/Deps.hs +++ b/Biz/Bild/Deps.hs @@ -378,7 +378,6 @@ parseCmdShow = ((cmdShow </ Opts.optional parsePackageName) <**> Opts.helper) <| Opts.progDesc "Show information about a dependency in human-readable format" --- TODO: nicer output cmdShow :: Maybe PackageName -> NIO () cmdShow = \case Just packageName -> do diff --git a/Biz/Cloud/Git.nix b/Biz/Cloud/Git.nix index fadf2aa..55ca441 100644 --- a/Biz/Cloud/Git.nix +++ b/Biz/Cloud/Git.nix @@ -22,7 +22,6 @@ in { (lib.strings.splitString "\n") lib.lists.head ]; - # TODO: this is broken # commonHooks = [ ./git-hooks ]; }; gitDaemon = { diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix index 8e316ed..114aee8 100644 --- a/Biz/Dev/Configuration.nix +++ b/Biz/Dev/Configuration.nix @@ -204,6 +204,6 @@ in { # should. system.stateVersion = "20.09"; # Did you read the comment? - # TODO: upstream this + # TODO: is this still necessary? Check nixpkgs upstream users.users.jupyter.isSystemUser = true; } diff --git a/Biz/Dev/Wireguard.nix b/Biz/Dev/Wireguard.nix index b4c26a5..90f425e 100644 --- a/Biz/Dev/Wireguard.nix +++ b/Biz/Dev/Wireguard.nix @@ -59,7 +59,7 @@ in { peers = [ #{ # helium - # publicKey = "TODO"; + # publicKey = ""; # allowedIPs = [ "10.100.0.2/32" ]; #} { # ben's iPhone diff --git a/Biz/Ide/push b/Biz/Ide/push index a0109e8..f6b9b98 100755 --- a/Biz/Ide/push +++ b/Biz/Ide/push @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# TODO: convert to haskell, see: +# Eventually convert to haskell, see: # - https://github.com/awakesecurity/nix-deploy/blob/master/src/Main.hs # - http://www.haskellforall.com/2018/08/nixos-in-production.html prefix=$(echo $PWD | sed -e "s|^$BIZ_ROOT/*||g") |