Skip to content

Commit 6d516fb

Browse files
committed
release: 0.2.2
1 parent c4aca22 commit 6d516fb

File tree

11 files changed

+7
-19
lines changed

11 files changed

+7
-19
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.1
1+
0.2.2

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.2.1",
3+
"version": "0.2.2",
44
"private": true,
55
"description": "Monorepo for JavaScript and TypeScript dx libraries.",
66
"homepage": "https://github.com/Rel1cx/dx",

packages/eff/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@let/eff",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"license": "MIT",
55
"exports": "./src/index.ts"
66
}

packages/eff/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@let/eff",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "JavaScript and TypeScript utilities.",
55
"homepage": "https://github.com/Rel1cx/dx",
66
"bugs": {

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.2.1",
3+
"version": "0.2.2",
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.2.1",
3+
"version": "0.2.2",
44
"private": false,
55
"description": "(WIP) An ESLint plugin for function-related rules.",
66
"homepage": "https://github.com/Rel1cx/dx",

packages/tsl-module/docs/variables/noDuplicateExports.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ Rule to detect and merge duplicate `export from` statements from the same module
1818

1919
`Rule`\<`unknown`\>
2020

21-
## Todo
22-
23-
Add autofix to merge duplicate exports automatically.
24-
2521
## Examples
2622

2723
```ts

packages/tsl-module/docs/variables/noDuplicateImports.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ Rule to detect and merge duplicate `import from` statements from the same module
1818

1919
`Rule`\<`unknown`\>
2020

21-
## Todo
22-
23-
Add autofix to merge duplicate imports automatically.
24-
2521
## Examples
2622

2723
```ts

packages/tsl-module/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tsl-module",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A tsl plugin for JavaScript and TypeScript module syntax linting and transformations.",
55
"keywords": [
66
"tsl",

packages/tsl-module/src/rules/no-duplicate-exports.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ function isReExportDeclaration(node: AST.ExportDeclaration): node is ReExportDec
1414
/**
1515
* Rule to detect and merge duplicate `export from` statements from the same module.
1616
*
17-
* @todo Add autofix to merge duplicate exports automatically.
18-
*
1917
* @example
2018
*
2119
* ```ts

0 commit comments

Comments
 (0)