From 89779b3f6c51b8867f39a6a8b9ed6b8accbcf179 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Wed, 23 Aug 2023 11:22:25 +0200 Subject: [PATCH] Add the `.mjs` file-extension to the EditorConfig Given that this file-extension is used for JavaScript modules, those files should obviously be formatted just like any "normal" JS file. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 88e697833..d5d5a9fa7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,6 @@ root = true -[*.{js,jsm,json,html,css,pdf.link}] +[*.{js,jsm,mjs,json,html,css,pdf.link}] charset = utf-8 end_of_line = lf indent_size = 2