Skip to content

Commit

Permalink
Merge pull request #18 from schoero/development
Browse files Browse the repository at this point in the history
chore(release): v0.2.8
  • Loading branch information
schoero authored Jun 19, 2024
2 parents 4ed741d + bf78a1c commit fdcd0ff
Show file tree
Hide file tree
Showing 306 changed files with 5,169 additions and 4,274 deletions.
7 changes: 4 additions & 3 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"import": [
"@schoero/cspell-config"
],
"ignorePaths": [
"schemas",
"local"
],
"import": [
"@schoero/configs/cspell"
],
"words": [
"anchortext",
"changelogen",
Expand All @@ -18,6 +18,7 @@
"testfunctionparam",
"testfunctiontparam",
"testt",
"tinyhighlight",
"tsdoc",
"TSJS",
"typeguards",
Expand Down
200 changes: 0 additions & 200 deletions .eslintrc.cjs

This file was deleted.

2 changes: 1 addition & 1 deletion .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@schoero/markdownlint-config"
"extends": "@schoero/configs/markdownlint"
}
10 changes: 8 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"configurations": [
{
"args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"],
"args": [
"run",
"${relativeFileDirname}/${fileBasenameNoExtension}"
],
"autoAttachChildProcesses": true,
"console": "integratedTerminal",
"name": "debug current test file",
Expand All @@ -12,7 +15,10 @@
"type": "node"
},
{
"args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"],
"args": [
"run",
"${relativeFileDirname}/${fileBasenameNoExtension}"
],
"autoAttachChildProcesses": true,
"console": "integratedTerminal",
"name": "debug current test file with node internals",
Expand Down
13 changes: 7 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"eslint.experimental.useFlatConfig": true,
"eslint.validate": ["javascript", "typescript", "json", "jsonc", "json5", "yaml"],
"editor.formatOnSave": false,

Expand All @@ -26,7 +27,8 @@
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"*.ts": "$(capture).test.ts,$(capture).test.snap,$(capture).test-d.ts"
"*.ts": "$(capture).test.ts,$(capture).test.snap,$(capture).test-d.ts",
"*.js": "$(capture).test.js,$(capture).cjs,$(capture).mjs,$(capture).d.ts,$(capture).d.ts.map,$(capture).js.map"
},

// ES module import
Expand All @@ -40,7 +42,6 @@
// Markdown
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.formatOnSave": true,
"editor.rulers": [
40,
80,
Expand All @@ -51,15 +52,15 @@

// VSCode
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.markdownlint": true,
"source.organizeImports": false
"source.fixAll.eslint": "explicit",
"source.fixAll.markdownlint": "explicit",
"source.organizeImports": "never"
},
"editor.rulers": [
119
],
"search.exclude": {
"lib": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.tsdk": "node_modules/typescript/lib"
}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

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.

> **Warning**
> [!WARNING]
>
> 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.
Expand Down Expand Up @@ -68,6 +68,9 @@ unwritten <path/to/entry-file.ts> [options]
--silent # Disables any console output.
-s

--debug # Enables verbose console output.
-d

--version # Returns the installed unwritten
-v # version.
```
Expand Down
1 change: 1 addition & 0 deletions changelog.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "@schoero/configs/changelogen";
1 change: 0 additions & 1 deletion changelog.config.ts

This file was deleted.

Loading

0 comments on commit fdcd0ff

Please sign in to comment.