Upgrade typescript- and linting-dependencies
Attempts to fix linter parsing issues stemming from changes in typescript v3.7. - Upgrade `eslint`-related packages. - Upgrade `typescript` and related `@sindresorhus/tsconfig`. - Fixes linting errors due to upgraded rules. - Note that you might need to remove `node_modules` and run `npm install` again to properly clear linting caches. - Include the `test` directory in a separate `tsconfig.xo.json` to fix the below parsing error. > Parsing error: `"parserOptions.project"` has been set for `@typescript-eslint/parser`. > The file does not match your project config: `test/test.ts`. > The file must be included in at least one of the projects provided. See - https://github.com/typescript-eslint/typescript-eslint/pull/1045 - https://github.com/microsoft/TypeScript/commits/v3.7.5 - https://github.com/sindresorhus/tsconfig/issues/7 - https://github.com/xojs/eslint-config-xo-typescript/issues/20 - https://github.com/xojs/eslint-config-xo-typescript/issues/15
This commit is contained in:
parent
aeb3f74d65
commit
58b23772de
4 changed files with 16 additions and 7 deletions
|
|
@ -457,7 +457,7 @@ const testType = (t: ExecutionContext, type: string, exclude?: string[]) => {
|
|||
for (const [key, {fixtures}] of types) {
|
||||
// TODO: Automatically exclude value types in other tests that we have in the current one.
|
||||
// Could reduce the use of `exclude`.
|
||||
if (exclude && exclude.includes(key)) {
|
||||
if (exclude?.includes(key)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue