From 3fa1e74cedb42eeeaee6088578c78a412891f269 Mon Sep 17 00:00:00 2001 From: Matej Kafka Date: Thu, 2 Jan 2025 20:15:18 +0100 Subject: [PATCH] feat: identify .psm1 and .psd1 files as powershell --- identify/extensions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/identify/extensions.py b/identify/extensions.py index 7c8159d..2abb56a 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -201,6 +201,8 @@ 'properties': {'text', 'java-properties'}, 'proto': {'text', 'proto'}, 'ps1': {'text', 'powershell'}, + 'psd1': {'text', 'powershell'}, + 'psm1': {'text', 'powershell'}, 'pug': {'text', 'pug'}, 'puml': {'text', 'plantuml'}, 'purs': {'text', 'purescript'},