universal-ctags: Finish migrating the updater
This commit is contained in:
@ -20,6 +20,7 @@ data Settings = Settings
|
||||
data MaintainerSettings = MaintainerSettings
|
||||
{ name :: !Text
|
||||
, email :: !Text
|
||||
, signature :: !Bool
|
||||
} deriving (Eq, Show)
|
||||
|
||||
settingsCodec :: Toml.TomlCodec Settings
|
||||
@ -35,3 +36,4 @@ maintainerSettingsCodec :: Toml.TomlCodec MaintainerSettings
|
||||
maintainerSettingsCodec = MaintainerSettings
|
||||
<$> Toml.text "name" .= name
|
||||
<*> Toml.text "email" .= email
|
||||
<*> Toml.bool "signature" .= signature
|
||||
|
Reference in New Issue
Block a user