From 5abca5bb6f1166045578ba7d51cda36b32cb333b Mon Sep 17 00:00:00 2001 From: Sebastian Good <2230835+scagood@users.noreply.github.com> Date: Mon, 11 Mar 2024 02:19:13 +0000 Subject: [PATCH] docs: Remove text "Node does not support modules yet" (#202) * docs: Node does not support modules yet (no-missing-import) #80 * docs: Node does not support modules yet (no-unpublished-import) #80 --- docs/rules/no-missing-import.md | 2 -- docs/rules/no-unpublished-import.md | 2 -- 2 files changed, 4 deletions(-) diff --git a/docs/rules/no-missing-import.md b/docs/rules/no-missing-import.md index 903e72b1..92a5ec11 100644 --- a/docs/rules/no-missing-import.md +++ b/docs/rules/no-missing-import.md @@ -6,8 +6,6 @@ This is similar to [no-missing-require](no-missing-require.md), but this rule handles `import` and `export` declarations. -⚠️ ECMAScript 2015 (ES6) does not define the lookup logic and Node does not support modules yet. So this rule spec might be changed in future. - ## 📖 Rule Details This rule checks the file paths of `import` and `export` declarations. diff --git a/docs/rules/no-unpublished-import.md b/docs/rules/no-unpublished-import.md index eab9516b..60b867fd 100644 --- a/docs/rules/no-unpublished-import.md +++ b/docs/rules/no-unpublished-import.md @@ -6,8 +6,6 @@ This is similar to [no-unpublished-require](no-unpublished-require.md), but this rule handles `import` declarations. -⚠️ ECMAScript 2015 (ES6) does not define the lookup logic and Node does not support modules yet. So this rule spec might be changed in future. - ## 📖 Rule Details If a source code file satisfies all of the following conditions, the file is \*published\*.