From 65fb77ef5ce93fa1090033fe31606138b8059bbc Mon Sep 17 00:00:00 2001 From: Anthony Dresser Date: Tue, 22 Oct 2019 00:26:03 -0700 Subject: [PATCH] Update linting file (#7886) * update linting file * update pr template --- .github/pull_request_template.md | 6 +++--- tslint.json | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 276121a227..c6d340797c 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,9 +1,9 @@ - This PR fixes # diff --git a/tslint.json b/tslint.json index 3a50a47f26..5513162309 100644 --- a/tslint.json +++ b/tslint.json @@ -101,7 +101,7 @@ "restrictions": [ "vs/nls", "**/{vs,sql}/base/{common,browser,node}/**", - "*" // node modules + "!path" // node modules (except path where we have our own impl) ] }, { @@ -141,7 +141,7 @@ "vs/nls", "**/{vs,sql}/base/{common,browser,node}/**", "**/{vs,sql}/base/parts/*/{common,browser,node}/**", - "*" // node modules + "!path" // node modules (except path where we have our own impl) ] }, { @@ -151,7 +151,7 @@ "vs/css!./**/*", "**/{vs,sql}/base/{common,browser,node,electron-browser}/**", "**/{vs,sql}/base/parts/*/{common,browser,node,electron-browser}/**", - "*", // node modules + "!path", // node modules (except path where we have our own impl) "@angular/*", "rxjs/*" ] @@ -162,7 +162,7 @@ "vs/nls", "**/{vs,sql}/base/{common,browser,node,electron-main}/**", "**/{vs,sql}/base/parts/*/{common,browser,node,electron-main}/**", - "*", // node modules + "!path", // node modules (except path where we have our own impl) "@angular/*", "rxjs/*" ]