From 0a818224f24b5bad8907df59b72551fcbb86065f Mon Sep 17 00:00:00 2001 From: rasok Date: Mon, 9 Dec 2024 17:04:27 -0500 Subject: [PATCH] Update .gitattributes to improve language detection for project files - Set all files as non-detectable by linguist except for Python files. - This change enhances the clarity of the project structure and ensures proper language recognition for relevant files. --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitattributes b/.gitattributes index dfe0770..1ef615c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,5 @@ # Auto detect text files and perform LF normalization * text=auto + +*.* linguist-detectable=false +*.py linguist-detectable=true \ No newline at end of file