1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-10-05 13:06:10 +02:00

chore: cleaner configs

This commit is contained in:
Théo LUDWIG 2024-01-29 21:26:59 +01:00
parent 1e0567b538
commit d2e627ff13
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,7 @@
{
"**/*": ["prettier --write --ignore-unknown", "editorconfig-checker"],
"**/*.{md,mdx}": ["markdownlint-cli2 --fix --no-globs"]
"**/*": ["editorconfig-checker", "prettier --write --ignore-unknown"],
"**/*.md": ["markdownlint-cli2 --fix --no-globs"],
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings 0 --report-unused-disable-directives"
]
}

View File

@ -6,7 +6,7 @@
"no-duplicate-heading": false,
"no-inline-html": false,
},
"globs": ["**/*.{md,mdx}"],
"globs": ["**/*.md"],
"ignores": ["**/node_modules"],
"customRules": ["markdownlint-rule-relative-links"],
}