From 103b919caa5d8a934c5af0b3ef0a97c787e87c7e Mon Sep 17 00:00:00 2001 From: Aleksey Kovalevsky Date: Sun, 9 Mar 2025 10:46:25 +0200 Subject: [PATCH] eslint-config-seekingalpha-typescript ver. 7.0.1 - [breaking] migrate to ESM and make flat config default --- .../eslint-config-seekingalpha-typescript/CHANGELOG.md | 4 ++++ .../eslint-config-seekingalpha-typescript/package.json | 2 +- .../rules/typescript-eslint/index.js | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/eslint-configs/eslint-config-seekingalpha-typescript/CHANGELOG.md b/eslint-configs/eslint-config-seekingalpha-typescript/CHANGELOG.md index 3ef6a04b..e2cbf1ad 100644 --- a/eslint-configs/eslint-config-seekingalpha-typescript/CHANGELOG.md +++ b/eslint-configs/eslint-config-seekingalpha-typescript/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 7.0.1 - 2025-03-09 + +- [breaking] migrate to ESM and make flat config default + ## 7.0.0 - 2025-03-09 - [breaking] migrate to ESM and make flat config default diff --git a/eslint-configs/eslint-config-seekingalpha-typescript/package.json b/eslint-configs/eslint-config-seekingalpha-typescript/package.json index 13950078..1079e06c 100644 --- a/eslint-configs/eslint-config-seekingalpha-typescript/package.json +++ b/eslint-configs/eslint-config-seekingalpha-typescript/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-seekingalpha-typescript", - "version": "7.0.0", + "version": "7.0.1", "description": "SeekingAlpha's sharable typescript ESLint config", "main": "index.js", "type": "module", diff --git a/eslint-configs/eslint-config-seekingalpha-typescript/rules/typescript-eslint/index.js b/eslint-configs/eslint-config-seekingalpha-typescript/rules/typescript-eslint/index.js index 168c299f..22c35508 100644 --- a/eslint-configs/eslint-config-seekingalpha-typescript/rules/typescript-eslint/index.js +++ b/eslint-configs/eslint-config-seekingalpha-typescript/rules/typescript-eslint/index.js @@ -1,4 +1,4 @@ -import config from '../config'; +import config from '../config.js'; const rulesRunTs = { '@typescript-eslint/require-await': 'off', diff --git a/package.json b/package.json index 28fd1f4b..6a32cfef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "seekingalpha-javascript-style", - "version": "7.1.0", + "version": "7.1.1", "description": "Set of linting rules, guides and best practices for best Javascript code", "main": "index.js", "type": "module",