This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'tmpdir' | |
require 'open3' | |
# The first parameter is supposed to be the path to the markdown file | |
input_file = ARGV.first | |
config_file = ARGV[1] || '.swiftlint.yml' | |
config_param = File.exist?(config_file) ? " --config #{File.realpath(config_file)}" : '' |