From 313959bcaf1613a60fc60a42c52b78146934eae2 Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Thu, 15 Feb 2024 19:02:38 +0100 Subject: [PATCH] test: use latest `typescript-eslint` in examples (#235) --- examples/typescript/README.md | 6 +++--- examples/typescript/eslint.config.js | 15 ++++----------- examples/typescript/package.json | 6 ++---- 3 files changed, 9 insertions(+), 18 deletions(-) diff --git a/examples/typescript/README.md b/examples/typescript/README.md index 36296c3c..522d4eaa 100644 --- a/examples/typescript/README.md +++ b/examples/typescript/README.md @@ -17,9 +17,9 @@ $ npm install $ npm test eslint-plugin-markdown/examples/typescript/README.md - 6:22 error Don’t use `String` as a type. Use string instead @typescript-eslint/ban-types - 10:13 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any + 6:22 error Don't use `String` as a type. Use string instead @typescript-eslint/ban-types + 10:13 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any -✖ 2 problems (1 error, 1 warning) +✖ 2 problems (2 errors, 0 warnings) 1 error and 0 warnings potentially fixable with the `--fix` option. ``` diff --git a/examples/typescript/eslint.config.js b/examples/typescript/eslint.config.js index 00362358..e1409236 100644 --- a/examples/typescript/eslint.config.js +++ b/examples/typescript/eslint.config.js @@ -2,13 +2,9 @@ const markdown = require("eslint-plugin-markdown"); const js = require("@eslint/js") -const { FlatCompat } = require("@eslint/eslintrc"); +const tseslint = require("typescript-eslint"); -const compat = new FlatCompat({ - baseDirectory: __dirname -}); - -module.exports = [ +module.exports = tseslint.config( js.configs.recommended, ...markdown.configs.recommended, { @@ -17,11 +13,8 @@ module.exports = [ sourceType: "commonjs" } }, - ...compat.config({ - parser: "@typescript-eslint/parser", - extends: ["plugin:@typescript-eslint/recommended"] - }).map(config => ({ + ...tseslint.configs.recommended.map(config => ({ ...config, files: ["**/*.ts"] })) -]; +); diff --git a/examples/typescript/package.json b/examples/typescript/package.json index 2f9baddb..7e93b92e 100644 --- a/examples/typescript/package.json +++ b/examples/typescript/package.json @@ -4,12 +4,10 @@ "test": "eslint ." }, "devDependencies": { - "@eslint/eslintrc": "^3.0.0", "@eslint/js": "^8.56.0", - "@typescript-eslint/eslint-plugin": "^6.20.0", - "@typescript-eslint/parser": "^6.20.0", "eslint": "^8.56.0", "eslint-plugin-markdown": "file:../..", - "typescript": "^3.9.7" + "typescript": "^5.3.3", + "typescript-eslint": "^7.0.1" } }