Skip to content

Commit 94418aa

Browse files
committed
Minor docs fixes
1 parent a4df265 commit 94418aa

File tree

5 files changed

+20
-139
lines changed

5 files changed

+20
-139
lines changed

.pkgs/configs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"@eslint/js": "^9.39.2",
2323
"@stylistic/eslint-plugin": "^5.6.1",
2424
"eslint-plugin-de-morgan": "^2.0.0",
25-
"eslint-plugin-function": "^0.1.3",
26-
"eslint-plugin-function-rule": "^0.1.3",
25+
"eslint-plugin-function": "^0.1.9",
26+
"eslint-plugin-function-rule": "^0.1.9",
2727
"eslint-plugin-jsdoc": "^61.5.0",
2828
"eslint-plugin-perfectionist": "^5.2.0",
2929
"eslint-plugin-regexp": "^2.10.0",

packages/tsl-module/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
| Variable | Description |
66
| ------ | ------ |
7-
| [noDuplicateExports](variables/noDuplicateExports.md) | Rule to disallow duplicate exports from the same module. Combine multiple export statements to the same module into a single statement. |
7+
| [noDuplicateExports](variables/noDuplicateExports.md) | Rule to disallow duplicate exports from the same module. Combine multiple export statements from the same module into a single statement. |
88
| [noDuplicateImports](variables/noDuplicateImports.md) | Rule to disallow duplicate imports from the same module. Combine multiple import statements from the same module into a single statement. |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
const noDuplicateExports: (options?: "off") => Rule<unknown>;
77
```
88

9-
Rule to disallow duplicate exports from the same module. Combine multiple export statements to the same module into a single statement.
9+
Rule to disallow duplicate exports from the same module. Combine multiple export statements from the same module into a single statement.
1010

1111
## Parameters
1212

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const messages = {
66
} as const;
77

88
/**
9-
* Rule to disallow duplicate exports from the same module. Combine multiple export statements to the same module into a single statement.
9+
* Rule to disallow duplicate exports from the same module. Combine multiple export statements from the same module into a single statement.
1010
*
1111
* @todo Add autofix to merge duplicate exports automatically.
1212
*

pnpm-lock.yaml

Lines changed: 15 additions & 134 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)