🔥 Remove fix-le

This commit is contained in:
trickypr 2022-05-08 14:31:52 +10:00
parent a00802df22
commit 2d1c88aabb
2 changed files with 0 additions and 44 deletions

View file

@ -32,12 +32,6 @@ export const commands: Cmd[] = [
{
cmd: 'discard <file>',
description: 'Discard a files changes.',
options: [
{
arg: '--keep, --keep-patch',
description: 'Keep the patch file instead of removing it',
},
],
requestController: async () => (await import('./commands/discard')).discard,
},
{
@ -58,13 +52,6 @@ export const commands: Cmd[] = [
requestController: async () =>
(await import('./commands/export-file')).exportFile,
},
{
cmd: 'lfify',
aliases: ['fix-le'],
description: 'Convert CRLF line endings to Unix LF line endings.',
requestController: async () =>
(await import('./commands/fix-le')).fixLineEndings,
},
{
cmd: 'import',
aliases: ['import-patches', 'i'],