From 92e5aa0e2bba75554fbb2ed353674e7b69bfbb86 Mon Sep 17 00:00:00 2001 From: Dave Chen Date: Fri, 20 Jun 2025 15:04:51 -0400 Subject: [PATCH 1/2] Added CSharp file type --- comment_spell_check/comment_spell_check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comment_spell_check/comment_spell_check.py b/comment_spell_check/comment_spell_check.py index 686b7e3..69da9f9 100755 --- a/comment_spell_check/comment_spell_check.py +++ b/comment_spell_check/comment_spell_check.py @@ -53,6 +53,7 @@ ".cxx": "text/x-c++", ".c": "text/x-c++", ".hxx": "text/x-c++", + ".cs": "text/x-c++", ".py": "text/x-python", ".rb": "text/x-ruby", ".java": "text/x-java-source", From 684eafe1a6cdf84929533c382729b7e3cd01b7ee Mon Sep 17 00:00:00 2001 From: Dave Chen Date: Fri, 20 Jun 2025 15:48:48 -0400 Subject: [PATCH 2/2] Added R file type --- comment_spell_check/comment_spell_check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comment_spell_check/comment_spell_check.py b/comment_spell_check/comment_spell_check.py index 69da9f9..64b9a12 100755 --- a/comment_spell_check/comment_spell_check.py +++ b/comment_spell_check/comment_spell_check.py @@ -55,6 +55,7 @@ ".hxx": "text/x-c++", ".cs": "text/x-c++", ".py": "text/x-python", + ".R": "text/x-python", ".rb": "text/x-ruby", ".java": "text/x-java-source", ".txt": "text/plain",