From 0f6d44503b69e34093325b70778b9cc89c2fa658 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 30 Mar 2024 13:31:25 +0100 Subject: [PATCH] tests: remove useless comments in test files --- tests/test-sources/plugins/bufferlines/barbar.nix | 1 - tests/test-sources/plugins/bufferlines/bufferline.nix | 3 --- tests/test-sources/plugins/colorschemes/catppuccin.nix | 2 -- tests/test-sources/plugins/colorschemes/poimandres.nix | 2 -- tests/test-sources/plugins/colorschemes/tokyonight.nix | 2 -- tests/test-sources/plugins/completion/cmp.nix | 1 - tests/test-sources/plugins/completion/lspkind.nix | 2 -- tests/test-sources/plugins/filetrees/neo-tree.nix | 2 -- tests/test-sources/plugins/filetrees/nvim-tree.nix | 2 -- tests/test-sources/plugins/languages/rust-tools.nix | 2 -- tests/test-sources/plugins/languages/typescript-tools.nix | 2 -- tests/test-sources/plugins/utils/lastplace.nix | 1 - tests/test-sources/plugins/utils/mark-radar.nix | 1 - tests/test-sources/plugins/utils/nvim-autopairs.nix | 2 -- tests/test-sources/plugins/utils/todo-comments.nix | 2 -- 15 files changed, 27 deletions(-) diff --git a/tests/test-sources/plugins/bufferlines/barbar.nix b/tests/test-sources/plugins/bufferlines/barbar.nix index c8d36f30..2c84a711 100644 --- a/tests/test-sources/plugins/bufferlines/barbar.nix +++ b/tests/test-sources/plugins/bufferlines/barbar.nix @@ -17,7 +17,6 @@ }; }; - # All the upstream default options of barbar defaults = { plugins.barbar = { enable = true; diff --git a/tests/test-sources/plugins/bufferlines/bufferline.nix b/tests/test-sources/plugins/bufferlines/bufferline.nix index 9cbb0ff4..474b5919 100644 --- a/tests/test-sources/plugins/bufferlines/bufferline.nix +++ b/tests/test-sources/plugins/bufferlines/bufferline.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.bufferline.enable = true; }; - # Lua functions example = { plugins.bufferline = { enable = true; @@ -43,7 +41,6 @@ }; }; - # All the upstream default options of bufferline defaults = { plugins.bufferline = { enable = true; diff --git a/tests/test-sources/plugins/colorschemes/catppuccin.nix b/tests/test-sources/plugins/colorschemes/catppuccin.nix index 8d666316..f0b14343 100644 --- a/tests/test-sources/plugins/colorschemes/catppuccin.nix +++ b/tests/test-sources/plugins/colorschemes/catppuccin.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { colorschemes.catppuccin.enable = true; }; - # All the upstream default options of catppuccin defaults = { colorschemes.catppuccin = { enable = true; diff --git a/tests/test-sources/plugins/colorschemes/poimandres.nix b/tests/test-sources/plugins/colorschemes/poimandres.nix index 6c3f1a1e..7cbd81cc 100644 --- a/tests/test-sources/plugins/colorschemes/poimandres.nix +++ b/tests/test-sources/plugins/colorschemes/poimandres.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { colorschemes.poimandres.enable = true; }; - # All the upstream default options of poimandres defaults = { colorschemes.poimandres = { enable = true; diff --git a/tests/test-sources/plugins/colorschemes/tokyonight.nix b/tests/test-sources/plugins/colorschemes/tokyonight.nix index fb4dd896..8bb61502 100644 --- a/tests/test-sources/plugins/colorschemes/tokyonight.nix +++ b/tests/test-sources/plugins/colorschemes/tokyonight.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { colorschemes.tokyonight.enable = true; }; - # All the upstream default options of tokyonight defaults = { colorschemes.tokyonight = { enable = true; diff --git a/tests/test-sources/plugins/completion/cmp.nix b/tests/test-sources/plugins/completion/cmp.nix index dcdcaf3c..7d9be4a8 100644 --- a/tests/test-sources/plugins/completion/cmp.nix +++ b/tests/test-sources/plugins/completion/cmp.nix @@ -38,7 +38,6 @@ }; }; - # All the upstream default options of nvim-cmp defaults = { plugins.cmp = { enable = true; diff --git a/tests/test-sources/plugins/completion/lspkind.nix b/tests/test-sources/plugins/completion/lspkind.nix index 107aba22..3626b0d4 100644 --- a/tests/test-sources/plugins/completion/lspkind.nix +++ b/tests/test-sources/plugins/completion/lspkind.nix @@ -1,5 +1,4 @@ { - # Empty configuration empty = { plugins.lspkind.enable = true; }; @@ -15,7 +14,6 @@ }; }; - # All the upstream default options of lspkind defaults = { plugins.lspkind = { enable = true; diff --git a/tests/test-sources/plugins/filetrees/neo-tree.nix b/tests/test-sources/plugins/filetrees/neo-tree.nix index 6adc8193..476bc538 100644 --- a/tests/test-sources/plugins/filetrees/neo-tree.nix +++ b/tests/test-sources/plugins/filetrees/neo-tree.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.neo-tree.enable = true; }; - # All the upstream default options of neo-tree defaults = { plugins.neo-tree = { enable = true; diff --git a/tests/test-sources/plugins/filetrees/nvim-tree.nix b/tests/test-sources/plugins/filetrees/nvim-tree.nix index 99c0e561..2587909a 100644 --- a/tests/test-sources/plugins/filetrees/nvim-tree.nix +++ b/tests/test-sources/plugins/filetrees/nvim-tree.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.nvim-tree.enable = true; }; - # All the upstream default options of nvim-tree defaults = { plugins.nvim-tree = { enable = true; diff --git a/tests/test-sources/plugins/languages/rust-tools.nix b/tests/test-sources/plugins/languages/rust-tools.nix index 1552ec4c..8af8771d 100644 --- a/tests/test-sources/plugins/languages/rust-tools.nix +++ b/tests/test-sources/plugins/languages/rust-tools.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.rust-tools.enable = true; }; - # All the upstream default options of rust-tools defaults = { plugins.rust-tools = { enable = true; diff --git a/tests/test-sources/plugins/languages/typescript-tools.nix b/tests/test-sources/plugins/languages/typescript-tools.nix index 4e0fd76c..b2dbea82 100644 --- a/tests/test-sources/plugins/languages/typescript-tools.nix +++ b/tests/test-sources/plugins/languages/typescript-tools.nix @@ -1,8 +1,6 @@ { empty = {plugins.typescript-tools.enable = true;}; - # Upstream defaults (couldn't find defaults for on_attach or handlers) - defaults = { plugins.typescript-tools = { enable = true; diff --git a/tests/test-sources/plugins/utils/lastplace.nix b/tests/test-sources/plugins/utils/lastplace.nix index 30bfc979..1b325622 100644 --- a/tests/test-sources/plugins/utils/lastplace.nix +++ b/tests/test-sources/plugins/utils/lastplace.nix @@ -3,7 +3,6 @@ plugins.lastplace.enable = true; }; - # All the upstream default options of lastplace defaults = { plugins.lastplace = { enable = true; diff --git a/tests/test-sources/plugins/utils/mark-radar.nix b/tests/test-sources/plugins/utils/mark-radar.nix index ddcf40d9..88de412d 100644 --- a/tests/test-sources/plugins/utils/mark-radar.nix +++ b/tests/test-sources/plugins/utils/mark-radar.nix @@ -3,7 +3,6 @@ plugins.mark-radar.enable = true; }; - # All the upstream default options of mark-radar defaults = { plugins.mark-radar = { enable = true; diff --git a/tests/test-sources/plugins/utils/nvim-autopairs.nix b/tests/test-sources/plugins/utils/nvim-autopairs.nix index 35ee739b..4f5b7559 100644 --- a/tests/test-sources/plugins/utils/nvim-autopairs.nix +++ b/tests/test-sources/plugins/utils/nvim-autopairs.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.nvim-autopairs.enable = true; }; - # All the upstream default options of trouble defaults = { plugins.nvim-autopairs = { enable = true; diff --git a/tests/test-sources/plugins/utils/todo-comments.nix b/tests/test-sources/plugins/utils/todo-comments.nix index df61498b..0d8a90ec 100644 --- a/tests/test-sources/plugins/utils/todo-comments.nix +++ b/tests/test-sources/plugins/utils/todo-comments.nix @@ -1,10 +1,8 @@ { - # Empty configuration empty = { plugins.todo-comments.enable = true; }; - # All the upstream default options of todo-comments defaults = { plugins.todo-comments = { enable = true;