docbrown/.solargraph.yml
Jeremy Friesen 8724a3724f
Improving Solargraph options (#16899)
I'm following the guidance of https://solargraph.org/guides/rails as
well as https://github.com/iftheshoefritz/solargraph-rails

The goal is to improve the [Language Server Protocol (LSP)][1] support
for Ruby in this repository.  For Emacs this means I get intellisense
type support (e.g. meaningful auto-completion based on symbols).  For
those using VSCode or Vim, there are Solargraph plugins available,
scroll to the [Supported Editors section of Solargraph's homepage][2].

[1]:https://microsoft.github.io/language-server-protocol/specifications/specification-current/
[2]:https://solargraph.org
2022-03-17 16:47:55 -04:00

23 lines
302 B
YAML

---
include:
- "**/*.rb"
exclude:
- spec/**/*
- test/**/*
- vendor/**/*
- ".bundle/**/*"
require: []
domains: []
reporters:
- rubocop
- require_not_found
formatter:
rubocop:
cops: safe
except: []
only: []
extra_args: []
require_paths: []
plugins:
- solargraph-rails
max_files: 5000