From bd0c00020e4dc9af567d1e458fb220da83636bfa Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Fri, 3 May 2019 16:04:18 -0400 Subject: [PATCH 1/5] Remove recommended typescript-eslint config --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index d511d71..9e1de78 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,5 @@ { - "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + "extends": ["eslint:recommended"], "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "env": { "node": true }, From c5576a2fb5cc83eaa6955940bbbddefbd8e5b4c7 Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Fri, 10 May 2019 12:52:51 -0400 Subject: [PATCH 2/5] Update lint command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f08bd63..6e526fb 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "compile": "tsc -p tsconfig.json", "start": "node lib/index.js", - "lint": "eslint 'src/**/*.ts'" + "lint": "eslint src/**/*.ts" }, "keywords": [ "typescript", "eslint", "standardjs", "prettier", "linting" ], "repository": { From c320fb66202e23a75739a86e962b21e237a247be Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Thu, 6 Jun 2019 16:47:27 -0400 Subject: [PATCH 3/5] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e0fcaac..e022ce3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # Learn TypeScript Linting -This repository is for the Matterhorn post [Learn TypeScript Linting](). +This repository is for the Matterhorn Mountain Top post series Learn TypeScript Linting. + +Check out part 1 on [TypeScript & ESLint](https://blog.matterhorn.dev/posts/learn-typescript-linting-part-1/) and part 2 on [Standard and Prettier Integration](https://blog.matterhorn.dev/posts/learn-typescript-linting-part-2/) From 412d7bf160bd63e3017ac2008860b9c824f4adf2 Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Tue, 18 Jun 2019 12:17:24 -0400 Subject: [PATCH 4/5] Add missing props --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9e1de78..20188a4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,7 +5,8 @@ "env": { "node": true }, "parserOptions": { "ecmaVersion": 5, - "sourceType": "module" + "sourceType": "module", + "project": "./tsconfig.json" }, "rules": { "no-console": "warn", From 4077bc47f7fd7a425f315f730854085d4895f29d Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Tue, 18 Jun 2019 12:17:24 -0400 Subject: [PATCH 5/5] Revert "Add missing props" This reverts commit 412d7bf160bd63e3017ac2008860b9c824f4adf2. --- .eslintrc.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 20188a4..9e1de78 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,8 +5,7 @@ "env": { "node": true }, "parserOptions": { "ecmaVersion": 5, - "sourceType": "module", - "project": "./tsconfig.json" + "sourceType": "module" }, "rules": { "no-console": "warn",