From 0c86e51e996217f28736baf239e33e97e773e11b Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 5 Sep 2022 18:17:36 +0200 Subject: [PATCH] Identify `.isort.cfg` as an INI-file --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index f757cfc..04382fb 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -280,6 +280,7 @@ '.gitlint': EXTENSIONS['ini'] | {'gitlint'}, '.gitmodules': {'text', 'gitmodules'}, '.hgrc': EXTENSIONS['ini'] | {'hgrc'}, + '.isort.cfg': EXTENSIONS['ini'] | {'isort'}, '.jshintrc': EXTENSIONS['json'] | {'jshintrc'}, '.mailmap': {'text', 'mailmap'}, '.mention-bot': EXTENSIONS['json'] | {'mention-bot'},