From 534a6ade27efbe4de85da416939db753520f9a24 Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Sun, 6 Apr 2025 10:43:19 -0400 Subject: [PATCH] Remove some less-helpful default exclusions like yaml and conf --- src/fileTypeExclusions.ts | 8 +++---- test-for-ignore.css | 47 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 50 insertions(+), 5 deletions(-) diff --git a/src/fileTypeExclusions.ts b/src/fileTypeExclusions.ts index b163138..c341e8d 100644 --- a/src/fileTypeExclusions.ts +++ b/src/fileTypeExclusions.ts @@ -22,10 +22,10 @@ const filetypeExclusions = [ '.lockb', // Config files - '.yaml', - '.yml', - '.toml', - '.conf', + // '.yaml', + // '.yml', + // '.toml', + // '.conf', // Binary and compiled '.exe', diff --git a/test-for-ignore.css b/test-for-ignore.css index e0b0101..a82ddd7 100644 --- a/test-for-ignore.css +++ b/test-for-ignore.css @@ -1 +1,46 @@ -A BUNCH OF SHIT \ No newline at end of file +/* This file is a sample used for testing exclusions */ +body { + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background-color: #f4f4f4; + line-height: 1.6; +} + +h1, h2, h3 { + color: #333; + margin-bottom: 1rem; +} + +p { + color: #555; + margin-bottom: 1rem; +} + +a { + color: #007bff; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +button { + background-color: #007bff; + color: white; + border: none; + padding: 10px 15px; + cursor: pointer; + border-radius: 5px; +} + +button:hover { + background-color: #0056b3; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 20px; +} \ No newline at end of file