File tree 4 files changed +34
-9
lines changed
4 files changed +34
-9
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
+ {
2
+ "recommendations" : [
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
+ " shardulm94.trailing-spaces" , // Trailing spaces
11
+ " styled-components.vscode-styled-components" , // styled()
12
+
13
+ // Lint
14
+ " dbaeumer.vscode-eslint" , // ESLint
15
+ " yoavbls.pretty-ts-errors" , // TypeScript
16
+ " stylelint.vscode-stylelint" , // Stylelint
17
+ " davidanson.vscode-markdownlint" , // markdownlint
18
+ " chrischinchilla.vale-vscode" // Vale
19
+ ]
20
+ }
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
+ "typescript.surveys.enabled" : false ,
7
+ "grammarly.selectors" : [
8
+ {
9
+ "language" : " markdown" ,
10
+ "scheme" : " file"
11
+ }
12
+ ]
13
+ }
You can’t perform that action at this time.
0 commit comments