From a61c552c6f6cd831e9c93c56a5991f07b9ee9525 Mon Sep 17 00:00:00 2001 From: Ugo Stephant Date: Thu, 14 May 2020 18:12:30 +0200 Subject: [PATCH] fix: fix wrong config names --- index.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 2b4fe265..e63958a6 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const ERROR = 2; module.exports = { extends: [ './common', - './node', - './browser', + './backend', + './frontend', ].map(require.resolve), }; diff --git a/package.json b/package.json index e315e020..1fa4a360 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@poool/eslint-config", - "version": "0.0.1-alpha.1", + "version": "0.0.1-alpha.2", "description": "Common ESLint rules we share between projects at Poool", "main": "index.js", "repository": "https://github.com/p3ol/eslint-config.git",