From 75cb1ae7c6a7adb8ea1bceccf3b6c4d41a38bb94 Mon Sep 17 00:00:00 2001 From: ColemanTom <15375218+ColemanTom@users.noreply.github.com> Date: Tue, 6 Sep 2022 14:03:45 +1000 Subject: [PATCH] Add Cylc configs file extension Cylc is a workflow tool and they have recently moved to use the `.cylc` file extension as their standard to ensure it is unique. --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index f757cfc..94adab3 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -38,6 +38,7 @@ 'cu': {'text', 'cuda'}, 'cuh': {'text', 'cuda'}, 'cxx': {'text', 'c++'}, + 'cylc': {'text', 'cylc'}, 'dart': {'text', 'dart'}, 'def': {'text', 'def'}, 'dll': {'binary'},