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
23 lines
302 B
YAML
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
|