From 5cec0682b05a18566018e2a42c16f497db9162e8 Mon Sep 17 00:00:00 2001 From: Markus Graf Date: Tue, 11 Nov 2025 11:28:02 +0100 Subject: [PATCH] feat: exclude markdown files in src/ from linguist documentation Add .gitattributes file to explicitly mark markdown files in the src/ directory as non-documentation. This prevents GitHub Linguist from treating them as project documentation, which is useful when markdown files in src/ are used for other purposes (e.g., code comments, templates, or non-user-facing content). --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f9e9a95 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Do not consider Markdown files documentation anymore for +# the Documentation! +src/**/*.md -linguist-documentation \ No newline at end of file