Skip to content

Commit 00e40c7

Browse files
committed
release: 0.7.0
1 parent 13479d9 commit 00e40c7

File tree

6 files changed

+80
-5
lines changed

6 files changed

+80
-5
lines changed

CHANGELOG.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,79 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0] - 2025-02-11
11+
12+
### Added
13+
14+
- **tsl-dx**: Added configuration options to `no-multiline-template-expression-without-auto-dedent` rule:
15+
- `dedentTagNames`: Customize which tag names are considered valid dedent tags (default: `["dedent"]`)
16+
- `dedentTagImportCallback`: Customize how the import statement is generated when applying fixes
17+
- **tsl-dx**: Enhanced `no-multiline-template-expression-without-auto-dedent` rule with auto-fix suggestions that add the dedent import and wrap multiline templates
18+
- **tsl-dx**: Added `runtimeLibrary` option to `nullish` rule for configuring the unit import source
19+
20+
### Changed
21+
22+
- **tsl-dx**: Improved `nullish` rule to distinguish between type and value imports for `unit`
23+
24+
## [0.6.1] - 2025-02-10
25+
26+
### Fixed
27+
28+
- **tsl-dx**: Fixed `nullish` rule to distinguish between type and value imports for `unit`
29+
30+
## [0.6.0] - 2025-02-10
31+
32+
### Added
33+
34+
- **tsl-dx**: Added `no-multiline-template-expression-without-auto-dedent` ESLint rule
35+
- **tsl-dx**: Added comprehensive test coverage for ESLint rules
36+
37+
### Changed
38+
39+
- Updated to ESLint 9.20.0
40+
41+
## [0.5.3] - 2025-02-08
42+
43+
### Fixed
44+
45+
- **tsl-dx**: Fixed `nullish` rule handling for declaration files
46+
47+
## [0.5.2] - 2025-02-08
48+
1049
### Changed
50+
51+
- Renamed package from `tsl-module` to `tsl-dx`
52+
53+
## [0.5.1] - 2025-02-07
54+
55+
### Changed
56+
57+
- **tsl-dx**: Renamed `consistent-nullish-comparison` rule to `nullish-comparison`
58+
59+
## [0.5.0] - 2025-02-07
60+
61+
### Added
62+
63+
- **tsl-dx**: Added `nullish` ESLint rule configuration
64+
65+
### Removed
66+
67+
- Dropped `tsl-local` package
68+
69+
## [0.4.0] - 2025-02-06
70+
71+
### Changed
72+
73+
- Updated dependencies: ESLint to 2.0.2, @eslint/compat to 1.1.0
74+
75+
## [0.3.1] - 2025-02-06
76+
77+
### Fixed
78+
79+
- Various bug fixes and improvements
80+
81+
## [0.3.0] - 2025-02-05
82+
83+
### Added
84+
85+
- Initial release with core functionality

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.1
1+
0.7.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dx",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"private": true,
55
"description": "Monorepo for JavaScript and TypeScript dx libraries.",
66
"homepage": "https://github.com/Rel1cx/dx",

packages/eslint-plugin-function-rule/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-function-rule",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "An ESLint plugin to write custom rules with JavaScript functions.",
55
"homepage": "https://github.com/Rel1cx/dx",
66
"bugs": {

packages/eslint-plugin-function/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-function",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"private": false,
55
"description": "(WIP) An ESLint plugin for function-related rules.",
66
"homepage": "https://github.com/Rel1cx/dx",

packages/tsl-dx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tsl-dx",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "A tsl plugin for better JavaScript/TypeScript DX.",
55
"keywords": [
66
"tsl",

0 commit comments

Comments
 (0)