Skip to content

Commit fdcd0ff

Browse files
authored
Merge pull request #18 from schoero/development
chore(release): v0.2.8
2 parents 4ed741d + bf78a1c commit fdcd0ff

File tree

306 files changed

+5169
-4274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+5169
-4274
lines changed

.cspell.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"import": [
3-
"@schoero/cspell-config"
4-
],
52
"ignorePaths": [
63
"schemas",
74
"local"
85
],
6+
"import": [
7+
"@schoero/configs/cspell"
8+
],
99
"words": [
1010
"anchortext",
1111
"changelogen",
@@ -18,6 +18,7 @@
1818
"testfunctionparam",
1919
"testfunctiontparam",
2020
"testt",
21+
"tinyhighlight",
2122
"tsdoc",
2223
"TSJS",
2324
"typeguards",

.eslintrc.cjs

-200
This file was deleted.

.markdownlint.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "@schoero/markdownlint-config"
2+
"extends": "@schoero/configs/markdownlint"
33
}

.vscode/launch.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"configurations": [
33
{
4-
"args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"],
4+
"args": [
5+
"run",
6+
"${relativeFileDirname}/${fileBasenameNoExtension}"
7+
],
58
"autoAttachChildProcesses": true,
69
"console": "integratedTerminal",
710
"name": "debug current test file",
@@ -12,7 +15,10 @@
1215
"type": "node"
1316
},
1417
{
15-
"args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"],
18+
"args": [
19+
"run",
20+
"${relativeFileDirname}/${fileBasenameNoExtension}"
21+
],
1622
"autoAttachChildProcesses": true,
1723
"console": "integratedTerminal",
1824
"name": "debug current test file with node internals",

.vscode/settings.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"[typescript]": {
1717
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
1818
},
19+
"eslint.experimental.useFlatConfig": true,
1920
"eslint.validate": ["javascript", "typescript", "json", "jsonc", "json5", "yaml"],
2021
"editor.formatOnSave": false,
2122

@@ -26,7 +27,8 @@
2627
"explorer.fileNesting.enabled": true,
2728
"explorer.fileNesting.expand": false,
2829
"explorer.fileNesting.patterns": {
29-
"*.ts": "$(capture).test.ts,$(capture).test.snap,$(capture).test-d.ts"
30+
"*.ts": "$(capture).test.ts,$(capture).test.snap,$(capture).test-d.ts",
31+
"*.js": "$(capture).test.js,$(capture).cjs,$(capture).mjs,$(capture).d.ts,$(capture).d.ts.map,$(capture).js.map"
3032
},
3133

3234
// ES module import
@@ -40,7 +42,6 @@
4042
// Markdown
4143
"[markdown]": {
4244
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
43-
"editor.formatOnSave": true,
4445
"editor.rulers": [
4546
40,
4647
80,
@@ -51,15 +52,15 @@
5152

5253
// VSCode
5354
"editor.codeActionsOnSave": {
54-
"source.fixAll.eslint": true,
55-
"source.fixAll.markdownlint": true,
56-
"source.organizeImports": false
55+
"source.fixAll.eslint": "explicit",
56+
"source.fixAll.markdownlint": "explicit",
57+
"source.organizeImports": "never"
5758
},
5859
"editor.rulers": [
5960
119
6061
],
6162
"search.exclude": {
6263
"lib": true
6364
},
64-
"typescript.tsdk": "node_modules/typescript/lib",
65+
"typescript.tsdk": "node_modules/typescript/lib"
6566
}

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
unwritten is a cli tool to automatically generate documentation from your JavaScript or TypeScript library by utilizing JSDoc comments and the TypeScript compiler to extract types and relevant information.
2525

26-
> **Warning**
26+
> [!WARNING]
2727
>
2828
> This project is at a really early stage and currently under heavy development. It is not feature complete and it may not or only partially work with your project. You have been warned.
2929
@@ -68,6 +68,9 @@ unwritten <path/to/entry-file.ts> [options]
6868
--silent # Disables any console output.
6969
-s
7070

71+
--debug # Enables verbose console output.
72+
-d
73+
7174
--version # Returns the installed unwritten
7275
-v # version.
7376
```

changelog.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from "@schoero/configs/changelogen";

changelog.config.ts

-1
This file was deleted.

0 commit comments

Comments
 (0)