From 13e61053e8ba7481117d8216f554fec792b36a17 Mon Sep 17 00:00:00 2001 From: Max Weiner Date: Tue, 19 Nov 2024 13:54:43 +0100 Subject: [PATCH] Add C# Script and F# Source and Script filetypes --- identify/extensions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/identify/extensions.py b/identify/extensions.py index 09a7126..0341dd3 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -43,6 +43,7 @@ 'cson': {'text', 'cson'}, 'css': {'text', 'css'}, 'csv': {'text', 'csv'}, + 'csx': {'text', 'c#', 'c#script'}, 'cu': {'text', 'cuda'}, 'cue': {'text', 'cue'}, 'cuh': {'text', 'cuda'}, @@ -75,6 +76,8 @@ 'feature': {'text', 'gherkin'}, 'fish': {'text', 'fish'}, 'fits': {'binary', 'fits'}, + 'fs': {'text', 'f#'}, + 'fsx': {'text', 'f#', 'f#script'}, 'gd': {'text', 'gdscript'}, 'gemspec': {'text', 'ruby'}, 'geojson': {'text', 'geojson', 'json'},