From 1d70b64c10e49f3a10c852a2a6affb382b3b4e95 Mon Sep 17 00:00:00 2001 From: Adrian Schmidt Date: Sat, 28 Oct 2023 22:22:44 +0200 Subject: [PATCH] fix: rename repo to make it work as shared config --- index.js | 4 ++++ package-lock.json | 4 ++-- package.json | 8 ++++---- 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..b843e97 --- /dev/null +++ b/index.js @@ -0,0 +1,4 @@ +/* eslint-env node */ +const eslint = require('./.eslintrc.js'); + +module.exports = eslint; diff --git a/package-lock.json b/package-lock.json index e3fd71d..bf4d8cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "lime-frontend-lint", + "name": "@limetech/eslint-config", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "lime-frontend-lint", + "name": "@limetech/eslint-config", "version": "1.0.0", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 6708f03..54f415d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@limetech/lime-frontend-lint", + "name": "@limetech/eslint-config", "version": "1.0.0", "description": "Reusable lint rules for use in other packages.", "author": "Lime Technologies", @@ -11,7 +11,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/Lundalogik/lime-frontend-lint.git" + "url": "git+https://github.com/Lundalogik/eslint-config.git" }, "keywords": [ "Lime", @@ -23,9 +23,9 @@ "prettier" ], "bugs": { - "url": "https://github.com/Lundalogik/lime-frontend-lint/issues" + "url": "https://github.com/Lundalogik/eslint-config/issues" }, - "homepage": "https://github.com/Lundalogik/lime-frontend-lint#readme", + "homepage": "https://github.com/Lundalogik/eslint-config#readme", "publishConfig": { "access": "public" },