forked from jbetancur/react-data-table-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
41 lines (41 loc) · 1.13 KB
/
settings.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
39
40
41
{
"files.associations": {
".editorconfig": "javascriptreact"
},
"editor.formatOnType": true,
// "eslint.options": {"configFile": "./package.json"},
"editor.tabSize": 2,
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"eslint.nodePath": "./src",
"editor.formatOnSave": false,
"window.zoomLevel": 0,
"workbench.iconTheme": "material-icon-theme",
// "terminal.integrated.fontFamily": "Knack Nerd Font",
"terminal.integrated.fontSize": 13,
"terminal.integrated.shellArgs.osx": [
"-l"
],
"terminal.integrated.shell.osx": "zsh",
"terminal.integrated.scrollback": 5000,
"editor.fontSize": 13,
// "editor.minimap.enabled": true,
"extensions.autoUpdate": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"prettier.useTabs": true,
}