From a0a1a4d139b6408419cd564611c26bd0dbade145 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 28 Nov 2022 13:58:14 +0100 Subject: enforce path aliases with eslint --- patches/eslint-plugin-path-alias@1.0.0.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/eslint-plugin-path-alias@1.0.0.patch (limited to 'patches') diff --git a/patches/eslint-plugin-path-alias@1.0.0.patch b/patches/eslint-plugin-path-alias@1.0.0.patch new file mode 100644 index 0000000..49c46b3 --- /dev/null +++ b/patches/eslint-plugin-path-alias@1.0.0.patch @@ -0,0 +1,13 @@ +diff --git a/lib/rules/no-relative.js b/lib/rules/no-relative.js +index 71594c83f1f4f733ffcc6047d7f7084348335dbe..d8623d87c89499c442171db3272cba07c9efabbe 100644 +--- a/lib/rules/no-relative.js ++++ b/lib/rules/no-relative.js +@@ -41,7 +41,7 @@ module.exports = { + ImportDeclaration(node) { + const importPath = node.source.value; + +- if (!/^(\.?\.\/)/.test(importPath)) { ++ if (!/^(\.\.\/)/.test(importPath)) { + return; + } + \ No newline at end of file -- cgit