diff options
author | Markus Koller <mkoller@gitlab.com> | 2019-07-09 03:01:04 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-07-09 03:01:04 +0000 |
commit | 385233981aca05f5c2ac2cf68af3688539bba62e (patch) | |
tree | bf163dd23549d8a876d7a17fc8e035682f472c68 /Gemfile | |
parent | 8a2c53d6400287bbb29056c4d007ee571b292937 (diff) | |
download | gitlab-ce-385233981aca05f5c2ac2cf68af3688539bba62e.tar.gz |
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.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |