.solargraph.yml 415 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. include:
  3. - "**/*.rb"
  4. exclude:
  5. - spec/**/*
  6. - test/**/*
  7. - vendor/**/*
  8. - ".bundle/**/*"
  9. - modules/**/*
  10. - data/**/*
  11. - db/**/*
  12. - external/**/*
  13. - plugins/**/*
  14. - scripts/**/* # Some of this is old and may not need indexing???
  15. require: []
  16. domains: []
  17. reporters:
  18. - rubocop
  19. - require_not_found
  20. formatter:
  21. rubocop:
  22. cops: safe
  23. except: []
  24. only: []
  25. extra_args: []
  26. require_paths: []
  27. plugins: []
  28. max_files: 0