feature/share-libs
json 19 lines 673 Bytes
Raw
1 {
2 "ruby.useBundler": true, //run non-lint commands with bundle exec
3 "ruby.useLanguageServer": true, // use the internal language server (see below)
4 "ruby.lint": {
5 "rubocop": {
6 "useBundler": true // enable rubocop via bundler
7 },
8 "reek": {
9 "useBundler": true // enable reek via bundler
10 }
11 },
12 "ruby.format": "rubocop", // use rubocop for formatting"
13 "ruby.rubocop.configFilePath": ".rubocop.yml",
14 "files.associations": {
15 "*.html.erb": "erb"
16 },
17 "vscode-erb-beautify.bundlerPath": "~/.rbenv/shims/bundler",
18 "vscode-erb-beautify.executePath": "~/.rbenv/shims/htmlbeautifier"
19 }