Class: Fastlane::Actions::SwiftlintAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::SwiftlintAction
- Defined in:
- fastlane/lib/fastlane/actions/swiftlint.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .example_code ⇒ Object
- .handle_swiftlint_error(ignore_exit_status, exit_status) ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
- .return_value ⇒ Object
Class Method Summary collapse
- .run(params) ⇒ Object
-
.supported_option_switch(params, option, min_version, can_ignore = false) ⇒ Object
Return “–option” switch if option is on and current SwiftLint version is greater or equal than min version.
-
.swiftlint_version(executable: nil) ⇒ Object
Get current SwiftLint version.
Methods inherited from Fastlane::Action
action_name, author, deprecated_notes, details, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
137 138 139 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 137 def self. ["KrauseFx"] end |
.available_options ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 71 def self. [ FastlaneCore::ConfigItem.new(key: :mode, description: "SwiftLint mode: :lint or :autocorrect", is_string: false, default_value: :lint, optional: true), FastlaneCore::ConfigItem.new(key: :path, description: "Specify path to lint", is_string: true, optional: true, verify_block: proc do |value| UI.user_error!("Couldn't find path '#{File.(value)}'") unless File.exist?(value) end), FastlaneCore::ConfigItem.new(key: :output_file, description: 'Path to output SwiftLint result', optional: true), FastlaneCore::ConfigItem.new(key: :config_file, description: 'Custom configuration file of SwiftLint', optional: true), FastlaneCore::ConfigItem.new(key: :strict, description: 'Fail on warnings? (true/false)', default_value: false, is_string: false, type: Boolean, optional: true), FastlaneCore::ConfigItem.new(key: :files, description: 'List of files to process', is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :ignore_exit_status, description: "Ignore the exit status of the SwiftLint command, so that serious violations \ don't fail the build (true/false)", default_value: false, is_string: false, type: Boolean, optional: true), FastlaneCore::ConfigItem.new(key: :reporter, description: 'Choose output reporter', is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :quiet, description: "Don't print status logs like 'Linting <file>' & 'Done linting'", default_value: false, is_string: false, type: Boolean, optional: true), FastlaneCore::ConfigItem.new(key: :executable, description: "Path to the `swiftlint` executable on your machine", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :format, description: "Format code when mode is :autocorrect", default_value: false, is_string: false, type: Boolean, optional: true) ] end |
.category ⇒ Object
161 162 163 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 161 def self.category :testing end |
.description ⇒ Object
67 68 69 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 67 def self.description "Run swift code validation using SwiftLint" end |
.example_code ⇒ Object
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 145 def self.example_code [ 'swiftlint( mode: :lint, # SwiftLint mode: :lint (default) or :autocorrect path: "/path/to/lint", # Specify path to lint (optional) output_file: "swiftlint.result.json", # The path of the output file (optional) config_file: ".swiftlint-ci.yml", # The path of the configuration file (optional) files: [ # List of files to process (optional) "AppDelegate.swift", "path/to/project/Model.swift" ], ignore_exit_status: true # Allow fastlane to continue even if SwiftLint returns a non-zero exit status )' ] end |
.handle_swiftlint_error(ignore_exit_status, exit_status) ⇒ Object
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 165 def self.handle_swiftlint_error(ignore_exit_status, exit_status) if ignore_exit_status failure_suffix = 'which would normally fail the build.' = 'fastlane will continue because the `ignore_exit_status` option was used! 🙈' else failure_suffix = 'which represents a failure.' = 'If you want fastlane to continue anyway, use the `ignore_exit_status` option. 🙈' end UI.important("") UI.important("SwiftLint finished with exit code #{exit_status}, #{failure_suffix}") UI.important() UI.important("") UI.user_error!("SwiftLint finished with errors (exit code: #{exit_status})") unless ignore_exit_status end |
.is_supported?(platform) ⇒ Boolean
141 142 143 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 141 def self.is_supported?(platform) [:ios, :mac].include?(platform) end |
.output ⇒ Object
131 132 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 131 def self.output end |
.return_value ⇒ Object
134 135 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 134 def self.return_value end |
.run(params) ⇒ Object
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 30 31 32 33 34 35 36 37 38 39 40 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 4 def self.run(params) if `which swiftlint`.to_s.length == 0 && params[:executable].nil? && !Helper.test? UI.user_error!("You have to install swiftlint using `brew install swiftlint` or specify the executable path with the `:executable` option.") end version = swiftlint_version(executable: params[:executable]) if params[:mode] == :autocorrect && version < Gem::Version.new('0.5.0') && !Helper.test? UI.user_error!("Your version of swiftlint (#{version}) does not support autocorrect mode.\nUpdate swiftlint using `brew update && brew upgrade swiftlint`") end command = (params[:executable] || "swiftlint").dup command << " #{params[:mode]}" command << " --path #{params[:path].shellescape}" if params[:path] command << supported_option_switch(params, :strict, "0.9.2", true) command << " --config #{params[:config_file].shellescape}" if params[:config_file] command << " --reporter #{params[:reporter]}" if params[:reporter] command << supported_option_switch(params, :quiet, "0.9.0", true) command << supported_option_switch(params, :format, "0.11.0", true) if params[:mode] == :autocorrect if params[:files] if version < Gem::Version.new('0.5.1') UI.user_error!("Your version of swiftlint (#{version}) does not support list of files as input.\nUpdate swiftlint using `brew update && brew upgrade swiftlint`") end files = params[:files].map.with_index(0) { |f, i| "SCRIPT_INPUT_FILE_#{i}=#{f.shellescape}" }.join(" ") command = command.prepend("SCRIPT_INPUT_FILE_COUNT=#{params[:files].count} #{files} ") command << " --use-script-input-files" end command << " > #{params[:output_file].shellescape}" if params[:output_file] begin Actions.sh(command) rescue handle_swiftlint_error(params[:ignore_exit_status], $?.exitstatus) end end |
.supported_option_switch(params, option, min_version, can_ignore = false) ⇒ Object
Return “–option” switch if option is on and current SwiftLint version is greater or equal than min version. Return “” otherwise.
50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 50 def self.supported_option_switch(params, option, min_version, can_ignore = false) return "" unless params[option] version = swiftlint_version(executable: params[:executable]) if version < Gem::Version.new(min_version) = "Your version of swiftlint (#{version}) does not support '--#{option}' option.\nUpdate swiftlint to #{min_version} or above using `brew update && brew upgrade swiftlint`" += "\nThe option will be ignored." if can_ignore can_ignore ? UI.important() : UI.user_error!() "" else " --#{option}" end end |
.swiftlint_version(executable: nil) ⇒ Object
Get current SwiftLint version
43 44 45 46 |
# File 'fastlane/lib/fastlane/actions/swiftlint.rb', line 43 def self.swiftlint_version(executable: nil) binary = executable || 'swiftlint' Gem::Version.new(`#{binary} version`.chomp) end |