Skip to content

Commit 3336ff3

Browse files
committed
Update CHANGELOG
1 parent bd7f457 commit 3336ff3

File tree

4 files changed

+162
-29
lines changed

4 files changed

+162
-29
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
## Version History
1212

13+
### v2.1.1
14+
15+
- :arrow_up: Move ts-eslint to dev deps
16+
1317
### v2.1.0
1418

1519
- :arrow_up: Update to ESLint Flat Config System

eslint.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import eslint from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
4+
export default tseslint.config(
5+
eslint.configs.recommended,
6+
...tseslint.configs.recommended,
7+
{
8+
"rules": {
9+
"@typescript-eslint/no-explicit-any": "warn"
10+
}
11+
}
12+
);

0 commit comments

Comments
 (0)