From 86d33a5f5e4acd9b1a600cd9b72769efa9daa800 Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Tue, 23 Oct 2018 22:16:13 -0700 Subject: [PATCH] Drop formatting requirement --- .github/SAMPLE_GUIDELINE.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/SAMPLE_GUIDELINE.md b/.github/SAMPLE_GUIDELINE.md index 676a6fd9..d0168463 100644 --- a/.github/SAMPLE_GUIDELINE.md +++ b/.github/SAMPLE_GUIDELINE.md @@ -30,10 +30,9 @@ The quickest way is to start your project by copying hellocode-sample. Only deviate from the standard setting if your sample needs to. -- 5.1: Include a `.prettierrc.json` following https://github.com/Microsoft/vscode-extension-samples/blob/ext-docs/hellocode-sample/.prettierrc.json. -- 5.2: Include a `tslint.json` following https://github.com/Microsoft/vscode-extension-samples/blob/ext-docs/hellocode-sample/tslint.json. -- 5.3: Include a `tsconfig.json` following https://github.com/Microsoft/vscode-extension-samples/blob/ext-docs/hellocode-sample/tsconfig.json. -- 5.4: Your source code should be formatted using the formatter and contain no TSLint/TS errors. +- 5.1: Include a `tslint.json` following https://github.com/Microsoft/vscode-extension-samples/blob/ext-docs/hellocode-sample/tslint.json. +- 5.2: Include a `tsconfig.json` following https://github.com/Microsoft/vscode-extension-samples/blob/ext-docs/hellocode-sample/tsconfig.json. +- 5.3: Your source code should be formatted either using [tsfmt](https://github.com/vvakame/typescript-formatter) or the editor's TS formatter and contain no TSLint/TS errors. ## 6: Tests