Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .eslintignore

This file was deleted.

161 changes: 0 additions & 161 deletions .eslintrc.json

This file was deleted.

52 changes: 52 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"config": {
"MD001": true,
"MD003": { "style": "atx" },
"MD004": { "style": "dash" },
"MD005": true,
"MD007": { "indent": 2 },
"MD009": { "strict": true },
"MD010": { "code_blocks": false, "spaces_per_tab": 2 },
"MD011": true,
"MD012": { "maximum": 1 },
"MD013": {
"line_length": 1000,
"heading_line_length": 80,
"code_blocks": false,
"tables": false
},
"MD018": true,
"MD019": true,
"MD022": { "lines_above": 0, "lines_below": 0 },
"MD023": true,
"MD024": false,
"MD025": false,
"MD026": { "punctuation": ",:.;" },
"MD027": true,
"MD028": true,
"MD029": { "style": "one_or_ordered" },
"MD030": true,
"MD031": true,
"MD032": true,
"MD034": true,
"MD035": { "style": "---" },
"MD037": true,
"MD038": true,
"MD039": true,
"MD040": true,
"MD042": true,
"MD045": true,
"MD046": { "style": "fenced" },
"MD047": true,
"MD048": { "style": "backtick" },
"MD049": { "style": "asterisk" },
"MD050": { "style": "asterisk" }
},
"fix": true,
"globs": [
"README.md",
"documentation/**/*.md",
"packages/*/README.md",
"packages/*/examples/README.md"
]
}
29 changes: 0 additions & 29 deletions .markdownlint.json

This file was deleted.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage/
.nyc_output/
.obsidian/
.git/
*.md
2 changes: 1 addition & 1 deletion documentation/using-parjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ expect(product().debug().parse("1 * 2 ")).toBeSuccessful(expected);

It will log something like this to the console:

```ts
```txt
consumed '1 * 2 ' (length 6)
at position 0->6
👍🏻 (Ok)
Expand Down
Loading