Centralize config for markdownlint
The configuration is currently only specified in CI, by moving it into `.mdlrc` we get immediate feedback locally in supported editors. To ensure `mdl` is available it's also added to the `Gemfile`, though CI will still use the version installed in the `gitlab-docs-lint` image.
Showing
.mdlrc
0 → 100644
.mdlrc.style
0 → 100644
... | ... | @@ -368,6 +368,7 @@ group :development, :test do |
gem 'haml_lint', '~> 0.31.0', require: false | ||
gem 'simplecov', '~> 0.16.1', require: false | ||
gem 'bundler-audit', '~> 0.5.0', require: false | ||
gem 'mdl', '~> 0.5.0', require: false | ||
gem 'benchmark-ips', '~> 2.3.0', require: false | ||
... | ... |
Please register or sign in to comment