Skip to content

Commit c57ca2e

Browse files
author
Wilson
committed
Refactor default configuration in config.ts by removing unnecessary rules and updating line length setting to false.
1 parent e3013f2 commit c57ca2e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Default configuration based on markdownlint.md rules
22
export const defaultConfig = {
3-
'default': true,
43
'MD001': true, // Heading levels should only increment by one level at a time
5-
'MD002': true, // First heading should be a top level heading
64
'MD003': true, // Heading style
75
'MD004': true, // Unordered list style
86
'MD005': true, // Inconsistent indentation for list items at the same level
@@ -12,7 +10,7 @@ export const defaultConfig = {
1210
'MD010': true, // Hard tabs
1311
'MD011': true, // Reversed link syntax
1412
'MD012': true, // Multiple consecutive blank lines
15-
'MD013': true, // Line length
13+
'MD013': false, // Line length
1614
'MD014': true, // Dollar signs used before commands without showing output
1715
'MD018': true, // No space after hash on atx style heading
1816
'MD019': true, // Multiple spaces after hash on atx style heading

0 commit comments

Comments
 (0)