forked from remirror/remirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
38 lines (32 loc) · 936 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
// Editor
"editor.tabSize": 2,
"editor.rulers": [80, 100],
"editor.insertSpaces": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.markdownlint": true
},
// Files
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
".yarn/releases/**": false
},
// JavaScript
"javascript.format.enable": false,
// TypeScript
"typescript.format.enable": false,
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
// Prettier
"prettier.ignorePath": ".eslintignore",
// Use PNPM
"npm.packageManager": "pnpm",
"eslint.packageManager": "pnpm",
// Improve editor performance. The project is large enough to cause issues
// when symlinks are followed.
"search.followSymlinks": false,
}