Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dangerfile « eslint « danger - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f78488cfd0a9549d8f451c1f907520bc86acd33e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

def get_eslint_files(files)
  files.select do |file|
    file.end_with?('.js', '.vue') &&
      File.read(file).include?('/* eslint-disable')
  end
end

eslint_candidates = get_eslint_files(git.added_files + git.modified_files)

return if eslint_candidates.empty?

warn 'This merge request changed files with disabled eslint rules. Please consider fixing them.'

markdown(<<~MARKDOWN)
  ## Disabled eslint rules

  The following files have disabled `eslint` rules. Please consider fixing them:

  * #{eslint_candidates.map { |path| "`#{path}`" }.join("\n* ")}

  Run the following command for more details

  ```
  node_modules/.bin/eslint --report-unused-disable-directives --no-inline-config \\
  #{eslint_candidates.map { |path| "  '#{path}'" }.join(" \\\n")}
  ```
MARKDOWN