From 689ba0398af0185df30260bea7fb6baaeff8819a Mon Sep 17 00:00:00 2001 From: lukas Date: Sat, 11 Nov 2023 23:43:07 +0100 Subject: [PATCH] fix: add eslint naming-convention import rule --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 04e807b2..b2df7577 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -42,6 +42,10 @@ const namingConventions = [ selector: 'objectLiteralProperty', modifiers: ['requiresQuotes'], format: null + }, + { + selector: 'import', + format: ['camelCase', 'PascalCase', 'snake_case', 'UPPER_CASE'], } ]