1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2025-09-11 23:09:27 +02:00

feat: add support for typescript-eslint v6.0.0

This commit is contained in:
2023-07-14 23:19:09 +02:00
parent 34ec74cff7
commit f89c4415cf
4 changed files with 391 additions and 266 deletions

View File

@@ -59,9 +59,9 @@ If you want to use **TypeScript**, you also need to install:
```sh
npm install --save-dev \
typescript@^5.0.4 \
@typescript-eslint/eslint-plugin@^5.60.1 \
@typescript-eslint/parser@^5.60.1
typescript@^5.1.6 \
@typescript-eslint/eslint-plugin@^6.0.0 \
@typescript-eslint/parser@^6.0.0
```
Dependencies are:
@@ -107,7 +107,7 @@ echo "{}" > .prettierrc.json
{
"scripts": {
"lint:eslint": "eslint . --ignore-path .gitignore",
"lint:prettier": "prettier . --check --ignore-path .gitignore"
"lint:prettier": "prettier . --check"
}
}
```