From 6442cf54ad21658e93775f66b34b332bb509c314 Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis <acunskis@gitlab.com> Date: Sat, 10 Apr 2021 09:48:39 +0300 Subject: [PATCH] Add .solargraph_example.yml configuration file --- .gitignore | 1 + .solargraph_example.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .solargraph_example.yml diff --git a/.gitignore b/.gitignore index 388718898e46..9d9730bf4063 100644 --- a/.gitignore +++ b/.gitignore @@ -105,3 +105,4 @@ ee/changelogs/unreleased-ee tags.lock tags.temp .stylelintcache +.solargraph.yml diff --git a/.solargraph_example.yml b/.solargraph_example.yml new file mode 100644 index 000000000000..9b3a28172e5b --- /dev/null +++ b/.solargraph_example.yml @@ -0,0 +1,18 @@ +--- +include: +- "**/*.rb" +exclude: +- spec/**/* +- ee/spec/**/* +- qa/qa/specs/features/**/* +- test/**/* +- vendor/**/* +- ".bundle/**/*" +require: [] +domains: [] +reporters: +- rubocop +- require_not_found +require_paths: [] +plugins: [] +max_files: 15000 -- GitLab