From 58905cdf579bde69610c45d4b3cfaf939c664d47 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Sun, 12 Apr 2020 17:02:20 +0300 Subject: [PATCH] chore: update .gitignore and tsconfig.json - I often find myself testing formatting on more than one test file, so now files like `test2.js` in the root are ignored. - Coverage reports contain JS files. `tsc` should ignore them. --- .gitignore | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 460258fdee7d..7a9a181d7ca2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ /scripts/release/node_modules *.log /errors -/test.* +/test*.* /.vscode /dist /website/node_modules diff --git a/tsconfig.json b/tsconfig.json index ccfd00e92035..15feff23bd0b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "strict": false }, "exclude": [ + "coverage/", // [TBD] JavaScript sources *not* affected by src/language-*: "src/main/ast-to-doc.js", "src/main/core.js",