Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import config from '../config';
import config from '../config.js';

const rulesRunTs = {
'@typescript-eslint/require-await': 'off',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading