File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ # https://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+
6
+ # Make sure every file:
7
+ # - Uses utf-8
8
+ # - Indents with spaces instead of tabs
9
+ # - Uses two space indents
10
+ # - Uses Unix-style newlines
11
+ # - Has a newline at the end of every file
12
+ # - Trims trailing whitespace
13
+ [* ]
14
+ charset = utf-8
15
+ indent_style = space
16
+ indent_size = 2
17
+ end_of_line = lf
18
+ insert_final_newline = true
19
+ trim_trailing_whitespace = true
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ exports.plugins = [
6
6
7
7
// Remark Lint Style Guide preset and overrides.
8
8
require ( 'remark-preset-lint-markdown-style-guide' ) ,
9
+ [ 'lint-code-block-style' , false ] ,
9
10
[ 'lint-blockquote-indentation' , false ] ,
10
11
[ 'lint-emphasis-marker' , false ] ,
11
12
[ 'lint-hard-break-spaces' , false ] ,
You can’t perform that action at this time.
0 commit comments