-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.vscode.settings.json
48 lines (48 loc) · 1.45 KB
/
.vscode.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
39
40
41
42
43
44
45
46
47
48
{
"editor.bracketPairColorization.enabled": true,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.inlineHints.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"files.associations": {
"*.prawn": "ruby",
},
"files.insertFinalNewline": true,
"liveshare.audio.joinCallBehavior": "accept",
"liveshare.authenticationProvider": "GitHub",
"remote.SSH.defaultExtensions": [
"eamodio.gitlens",
"graphql.vscode-graphql",
"MS-vsliveshare.vsliveshare",
"redhat.vscode-yaml",
"mikestead.dotenv",
"Shopify.ruby-lsp",
"mattlott.copy-github-url"
],
"ruby.format": "rubocop",
"ruby.lint": {
"rubocop": true
},
"ruby.useLanguageServer": true,
"rubyLsp.enabledFeatures": {
"onTypeFormatting": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.tabSize": 4
},
"[ruby]": {
"editor.defaultFormatter": "Shopify.rubocop-lsp",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true
},
"[yaml]": {
"editor.tabSize": 2
},
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "eq-material-theme-icons",
"devTestRunner.command": "bin/rails test"
}