File tree 5 files changed +27
-30
lines changed
5 files changed +27
-30
lines changed Original file line number Diff line number Diff line change 3
3
# top-most EditorConfig file
4
4
root = true
5
5
6
- [* .md ]
7
- trim_trailing_whitespace = false
8
-
9
- [* .js ]
10
- trim_trailing_whitespace = true
11
-
12
6
# Unix-style newlines with a newline ending every file
13
7
[* ]
8
+ trim_trailing_whitespace = true
14
9
indent_style = space
15
10
indent_size = 2
16
11
end_of_line = lf
Original file line number Diff line number Diff line change 4
4
.idea
5
5
# IntelliJ IDEA module file
6
6
* .iml
7
- .vscode /*
8
- ! .vscode /launch.json
9
- ! .vscode /extensions.json
10
7
* .log
11
8
* .tsbuildinfo
12
9
/.eslintcache
Original file line number Diff line number Diff line change 1
1
{
2
2
"recommendations" : [
3
- " davidanson.vscode-markdownlint" ,
4
- " dbaeumer.vscode-eslint" ,
5
- " editorconfig.editorconfig" ,
6
- " esbenp.prettier-vscode" ,
7
- " unifiedjs.vscode-mdx" ,
8
- " yoavbls.pretty-ts-errors"
3
+ // Formating
4
+ " esbenp.prettier-vscode" , // Prettier
5
+ " editorconfig.editorconfig" , // EditorConfig
6
+
7
+ // Highlighting
8
+ " bradlc.vscode-tailwindcss" , // Tailwind CSS
9
+ " unifiedjs.vscode-mdx" , // MDX
10
+ " styled-components.vscode-styled-components" , // styled()
11
+
12
+ // Lint
13
+ " dbaeumer.vscode-eslint" , // ESLint
14
+ " yoavbls.pretty-ts-errors" , // TypeScript
15
+ " stylelint.vscode-stylelint" , // Stylelint
16
+ " davidanson.vscode-markdownlint" // markdownlint
9
17
]
10
18
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
3
+ "files.trimTrailingWhitespace" : true ,
4
+
5
+ // Root workspace only
6
+ "grammarly.selectors" : [
7
+ {
8
+ "language" : " markdown" ,
9
+ "scheme" : " file"
10
+ }
11
+ ]
12
+ }
You can’t perform that action at this time.
0 commit comments