diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a50cae9ba..ff0ec4f633 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,6 @@ jobs: node-version: [8, 10, 12, 14] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - run: git config --global core.autocrlf false - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: diff --git a/README.md b/README.md index 0d9b59a4cc..e2e4fcd532 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,6 @@ npm install > Do not use Yarn to install the dependencies, as the specific package versions in `package-lock.json` are used to build and test Svelte. -> Many tests depend on newlines being preserved as ``. On Windows, you can ensure this by cloning with: -> ```bash -> git -c core.autocrlf=false clone https://github.com/sveltejs/svelte.git -> ``` - To build the compiler, and all the other modules included in the package: ```bash diff --git a/site/content/faq/500-what-about-typescript-support.md b/site/content/faq/500-what-about-typescript-support.md index dae27143ed..0088533ca3 100644 --- a/site/content/faq/500-what-about-typescript-support.md +++ b/site/content/faq/500-what-about-typescript-support.md @@ -2,4 +2,4 @@ question: What about Typescript support? --- -You need to install a [community supported preprocessor](https://github.com/sveltejs/integrations#preprocessors) such as [svelte-preprocess](https://github.com/kaisermann/svelte-preprocess). Work is ongoing to improve [IDE support](https://github.com/sveltejs/language-tools/issues/83) and build [additional CLI tooling](https://github.com/sveltejs/language-tools/issues/68) \ No newline at end of file +You need to install a [community supported preprocessor](https://github.com/sveltejs/integrations#preprocessors) such as [svelte-preprocess](https://github.com/kaisermann/svelte-preprocess). Work is ongoing to improve [IDE support](https://github.com/sveltejs/language-tools/issues/83). You can also run type checking from command line with [svelte-check](https://www.npmjs.com/package/svelte-check). diff --git a/test/parser/index.ts b/test/parser/index.ts index 32afcbbafc..4a6ae10471 100644 --- a/test/parser/index.ts +++ b/test/parser/index.ts @@ -38,7 +38,7 @@ describe('parse', () => { } catch (err) { if (err.name !== 'ParseError') throw err; if (!expectedError) throw err; - const { code, message, pos, start } = err; + const { code, message, pos, start } = err try { assert.deepEqual({ code, message, pos, start }, expectedError); } catch (err2) {