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: 0 additions & 2 deletions .github/sync-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ lumirlumir/lumirlumir-configs:
dest: ./configs/.nvmrc
- source: ./.prettierignore
dest: ./configs/.prettierignore
- source: ./.textlintrc.cjs
dest: ./configs/.textlintrc.cjs
- source: ./LICENSE.md
dest: ./configs/LICENSE.md
- source: ./VScode.code-workspace
Expand Down
9 changes: 0 additions & 9 deletions .textlintrc.cjs

This file was deleted.

16 changes: 15 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,19 @@ export default defineConfig([
bananass.configs.json,
bananass.configs.jsonc,
bananass.configs.json5,
mark.configs.recommendedGfm,
mark.configs.recommended,
mark.configs.stylistic,

{
name: 'md/global',
files: ['**/*.md'],
rules: {
'mark/allow-link-url': [
'error',
{
disallowUrls: [/^\.\//],
},
],
},
},
]);
2 changes: 1 addition & 1 deletion lint-staged.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export default {
'npx editorconfig-checker -config .editorconfig-checker.json',
],
'*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,json,jsonc,json5,md}': 'npx eslint --fix',
'*.md': ['npx markdownlint --fix', 'npx textlint -f pretty-error'],
'*.md': ['npx markdownlint --fix'],
};
Loading
Loading