From cab4331020bb8efc81e910b6424d0a88118138ed Mon Sep 17 00:00:00 2001 From: dworac Date: Fri, 3 Mar 2023 13:08:39 -0600 Subject: [PATCH] feat: added peer dependencies for typescript --- .gitignore | 2 ++ .idea/.gitignore | 5 ----- .idea/eslint-config-typescript.iml | 12 ------------ .idea/jsonSchemas.xml | 28 ---------------------------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ package.json | 22 ++++++++++++---------- 7 files changed, 14 insertions(+), 69 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/eslint-config-typescript.iml delete mode 100644 .idea/jsonSchemas.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index c6bba59..21b0446 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ yarn-error.log* lerna-debug.log* .pnpm-debug.log* +.idea/ + # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index b58b603..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/eslint-config-typescript.iml b/.idea/eslint-config-typescript.iml deleted file mode 100644 index 0c8867d..0000000 --- a/.idea/eslint-config-typescript.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/jsonSchemas.xml b/.idea/jsonSchemas.xml deleted file mode 100644 index aa3b018..0000000 --- a/.idea/jsonSchemas.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index af1ff86..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/package.json b/package.json index b880064..5c1cac0 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,7 @@ { "name": "@dworac/eslint-config-typescript", + "author": "dworac ", + "license": "MIT", "version": "1.1.0", "description": "dworac's eslint typescript configuration with airbnb, prettier and jsdoc", "main": "index.js", @@ -19,6 +21,13 @@ "jsdoc", "airbnb" ], + "bugs": { + "url": "https://github.com/dworac/eslint-config-typescript/issues" + }, + "homepage": "https://github.com/dworac/eslint-config-typescript#readme", + "publishConfig": { + "access": "public" + }, "dependencies": { "@typescript-eslint/eslint-plugin": "^5.48.0", "@typescript-eslint/parser": "^5.48.0", @@ -29,16 +38,9 @@ "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsdoc": "^40.0.0", "eslint-plugin-prettier": "^4.2.1", - "prettier": "^2.8.1", - "typescript": "^4.9.5" + "prettier": "^2.8.1" }, - "author": "dworac ", - "license": "ISC", - "bugs": { - "url": "https://github.com/dworac/eslint-config-typescript/issues" - }, - "homepage": "https://github.com/dworac/eslint-config-typescript#readme", - "publishConfig": { - "access": "public" + "peerDependencies": { + "typescript": "^4.9.5" } }