summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-27 18:10:39 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-27 18:10:39 +0000
commit9beaa6816987274f2b870146ac649c970d69da24 (patch)
tree17af5519819903593a71b1eae47cbc0999f9a1c7 /scripts
parent524a21e75209d2501b23b648daf753e3a4bebe56 (diff)
downloadgitlab-ce-9beaa6816987274f2b870146ac649c970d69da24.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lint-json77
-rwxr-xr-xscripts/lint-json.sh8
2 files changed, 77 insertions, 8 deletions
diff --git a/scripts/lint-json b/scripts/lint-json
new file mode 100755
index 00000000000..3fa952b13df
--- /dev/null
+++ b/scripts/lint-json
@@ -0,0 +1,77 @@
+#!/usr/bin/env ruby
+# frozen_string_literal: true
+
+require "json"
+require "optparse"
+require "rainbow/refinement"
+using Rainbow
+
+options = {}
+
+OptionParser.new do |opts|
+ opts.banner = 'Checks if JSON files are pretty.'
+
+ opts.on('-f', '--format', 'Format JSON files inline.') do
+ options[:format] = true
+ end
+
+ opts.on('-s', '--stats', 'Print statistics after processing.') do
+ options[:stats] = true
+ end
+
+ opts.on('-v', '--verbose', 'Increase verbosity.') do
+ options[:verbose] = true
+ end
+
+ opts.on('-q', '--quiet', 'Do not print anything. Disables -s and -v') do
+ options[:quiet] = true
+ end
+
+ opts.on('-h', '--help', 'Prints this help') do
+ abort opts.to_s
+ end
+end.parse!
+
+def make_pretty(file, format:, verbose:, quiet:)
+ json = File.read(file)
+ pretty = JSON.pretty_generate(JSON.parse(json)) << "\n"
+
+ return :pretty if json == pretty
+
+ puts "#{file} is not pretty" if verbose && !quiet
+ return :todo unless format
+
+ puts "#{file} was not pretty. Fixed!" unless quiet
+ File.write(file, pretty)
+ :formatted
+rescue JSON::ParserError
+ puts "#{file} is invalid. Skipping!" unless quiet
+ :error
+end
+
+results = ARGV
+ .lazy
+ .flat_map { |pattern| Dir.glob(pattern) }
+ .map { |file| make_pretty(file, format: options[:format], verbose: options[:verbose], quiet: options[:quiet]) }
+ .to_a
+
+if options[:stats] && !options[:quiet]
+ puts format("Scanned total=%<total>d, pretty=%<pretty>d, formatted=%<formatted>d, error=%<error>d",
+ total: results.size,
+ pretty: results.count { |result| result == :pretty },
+ formatted: results.count { |result| result == :formatted },
+ error: results.count { |result| result == :error }
+ )
+end
+
+if results.any?(:todo)
+ unless options[:quiet]
+ puts "\nSome of the JSON files are not pretty-printed, you can run:".yellow
+ puts "\tscripts/lint-json -f $(git diff --name-only master... | grep \\\\.json)".white
+ puts "to fix them".yellow
+ end
+
+ exit(1)
+else
+ exit(0)
+end
diff --git a/scripts/lint-json.sh b/scripts/lint-json.sh
deleted file mode 100755
index 685661c789a..00000000000
--- a/scripts/lint-json.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/env bash
-
-set -euo pipefail
-
-for file in "$@"
-do
- yarn run -s jsonlint -p "$file" | perl -pe 'chomp if eof' | diff "$file" -
-done