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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ indent_style = tab
[*.js]
indent_style = tab

[*.json]
[*.{json,jsonc}]
indent_style = tab

[*.md]
Expand Down
33 changes: 33 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"config": {
"default": true,
"blanks-around-fences": false,
"blanks-around-lists": false,
"first-line-heading": false,
"line-length": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-inline-html": {
"allowed_elements": ["br", "img", "kbd", "details", "summary"]
},
"no-multiple-blanks": {
"maximum": 2
},
"no-trailing-spaces": true,
"ul-indent": false,
"ul-style": {
"style": "consistent"
}
},
// Markdown files to lint (previously the '**/*.md' CLI argument)
"globs": [
"**/*.md"
],
"ignores": [
"**/node_modules/**",
"symbolic/**",
"third-party/**",
"tmp/**",
"vendor/**"
]
}
20 changes: 0 additions & 20 deletions .markdownlint.json

This file was deleted.

6 changes: 0 additions & 6 deletions .markdownlintignore

This file was deleted.

166 changes: 53 additions & 113 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"scripts": {
"eslint": "eslint .",
"eslint_fix": "eslint --fix .",
"markdownlint": "markdownlint '**/*.md'",
"markdownlint_fix": "markdownlint --fix '**/*.md'",
"markdownlint": "markdownlint-cli2",
"markdownlint_fix": "markdownlint-cli2 --fix",
"rtlcss": "npm run symbolic && rtlcss -d symbolic/ && find -L symbolic/ -type f -name '*.rtl.rtl.css' -delete",
"stylelint": "stylelint '**/*.css'",
"stylelint_fix": "stylelint --fix '**/*.css'",
Expand All @@ -35,7 +35,7 @@
"eslint": "^9.39.4",
"@eslint/js": "^9.39.4",
"globals": "^17.4.0",
"markdownlint-cli": "^0.49.0",
"markdownlint-cli2": "^0.23.0",
"neostandard": "^0.13.0",
"rtlcss": "^4.3.0",
"stylelint": "^17.14.0",
Expand Down