From 9ff6063149603501052443b738bfc76f9232fb82 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 26 Feb 2020 22:01:09 +0400 Subject: feat(unicorn): import-index Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/unicorn/default.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 6e21048..edca367 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -480,7 +480,7 @@ - [ ] "expiring-todo-comments" - [ ] "explicit-length-check" - [X] "filename-case" -- [ ] "import-index" +- [X] "import-index" - [ ] "new-for-builtins" - [ ] "no-abusive-eslint-disable" - [ ] "no-array-instanceof" diff --git a/src/rules/unicorn/default.json b/src/rules/unicorn/default.json index 7a7dc1b..435ef7e 100644 --- a/src/rules/unicorn/default.json +++ b/src/rules/unicorn/default.json @@ -8,6 +8,12 @@ } } ], + "unicorn/import-index": [ + "error", + { + "ignoreImports": true + } + ], "unicorn/no-console-spaces": [ "error" ], -- cgit v1.2.3 From 694ac9c74db118dee476daaf211f8f6d673a1214 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 26 Feb 2020 22:01:41 +0400 Subject: update(project): Bump version Signed-off-by: Valentin Popov --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1ecdd14..441bed8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@valentineus/eslint-config", - "version": "0.0.12", + "version": "0.0.13", "description": "Personal ESLint configuration", "main": "index.js", "repository": "git@code.valentineus.link:eslint-config.git", -- cgit v1.2.3 From 5ab5dadfc154e5e79395e107ba3dc23922723d7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2020 17:50:29 +0000 Subject: build(deps): Bump acorn from 7.1.0 to 7.1.1 Bumps [acorn](https://github.com/acornjs/acorn) from 7.1.0 to 7.1.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/7.1.0...7.1.1) Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 5a3a87a..785b572 100644 --- a/yarn.lock +++ b/yarn.lock @@ -114,9 +114,9 @@ acorn-jsx@^5.1.0: integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== acorn@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" - integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== + version "7.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" + integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== ajv@^6.10.0, ajv@^6.10.2: version "6.11.0" -- cgit v1.2.3