danger-swiftlint 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +6 -0
- data/README.md +6 -0
- data/lib/danger_plugin.rb +19 -6
- data/lib/version.rb +1 -1
- data/spec/danger_plugin_spec.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3b820ec6ebe7d24aa08c97887544ab8616e1bd0
|
4
|
+
data.tar.gz: 114dd0c769d754f3d93be4bcc0f30785d018694d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 774bbbdbed22fe7159db897f198df1eed4b381369b837108260d6dfa2838168e6fc1f216c8ad4d858803f0b312d620b782a116ca9f6cfd460fda62edb8aea2aa
|
7
|
+
data.tar.gz: 4e85ea6784227a0e1a714b6aa3373b8dc197fee3f62e4ec042160815b3676026bd327116f7159270962ef166ffef9fafe6cf9140ee0ed407170dd62091f3d34d
|
data/Changelog.md
CHANGED
@@ -4,6 +4,12 @@
|
|
4
4
|
|
5
5
|
- Nothing yet!
|
6
6
|
|
7
|
+
## 0.8.0
|
8
|
+
|
9
|
+
- Fixes Directory not found error. See [#51](https://github.com/ashfurrow/danger-swiftlint/pull/51).
|
10
|
+
- Fixes issue with missing `.swiftlint.yml` file. See [#52](https://github.com/ashfurrow/danger-swiftlint/pull/52).
|
11
|
+
- Adds `fail_on_error` option. See [#55](https://github.com/ashfurrow/danger-swiftlint/pull/55)
|
12
|
+
|
7
13
|
## 0.7.0
|
8
14
|
|
9
15
|
- Bump managed SwiftLint version to 0.20.1
|
data/README.md
CHANGED
@@ -36,6 +36,12 @@ If you want the lint result shows in diff instead of comment, you can use `inlin
|
|
36
36
|
swiftlint.lint_files inline_mode: true
|
37
37
|
```
|
38
38
|
|
39
|
+
If you want lint errors to fail Danger, you can use `fail_on_error` option.
|
40
|
+
|
41
|
+
```rb
|
42
|
+
swiftlint.lint_files fail_on_error: true
|
43
|
+
```
|
44
|
+
|
39
45
|
You can use the `SWIFTLINT_VERSION` environment variable to override the default version installed via the `rake install` task.
|
40
46
|
|
41
47
|
## Attribution
|
data/lib/danger_plugin.rb
CHANGED
@@ -36,22 +36,30 @@ module Danger
|
|
36
36
|
# if nil, modified and added files from the diff will be used.
|
37
37
|
# @return [void]
|
38
38
|
#
|
39
|
-
def lint_files(files=nil, inline_mode: false)
|
39
|
+
def lint_files(files=nil, inline_mode: false, fail_on_error: false)
|
40
40
|
# Fails if swiftlint isn't installed
|
41
41
|
raise "swiftlint is not installed" unless swiftlint.is_installed?
|
42
42
|
|
43
|
+
config = if config_file
|
44
|
+
config_file
|
45
|
+
elsif File.file?('.swiftlint.yml')
|
46
|
+
'.swiftlint.yml'
|
47
|
+
else
|
48
|
+
nil
|
49
|
+
end
|
50
|
+
|
43
51
|
# Extract excluded paths
|
44
|
-
excluded_paths = excluded_files_from_config(
|
52
|
+
excluded_paths = excluded_files_from_config(config)
|
45
53
|
|
46
54
|
# Extract swift files (ignoring excluded ones)
|
47
55
|
files = find_swift_files(files, excluded_paths)
|
48
56
|
|
49
57
|
# Prepare swiftlint options
|
50
58
|
options = {
|
51
|
-
config:
|
59
|
+
config: config,
|
52
60
|
reporter: 'json',
|
53
61
|
quiet: true,
|
54
|
-
pwd: directory
|
62
|
+
pwd: directory ? File.expand_path(directory) : Dir.pwd
|
55
63
|
}
|
56
64
|
|
57
65
|
# Lint each file and collect the results
|
@@ -72,6 +80,11 @@ module Danger
|
|
72
80
|
message << markdown_issues(warnings, 'Warnings') unless warnings.empty?
|
73
81
|
message << markdown_issues(errors, 'Errors') unless errors.empty?
|
74
82
|
markdown message
|
83
|
+
|
84
|
+
# Fail Danger on errors
|
85
|
+
if fail_on_error && errors.count > 0
|
86
|
+
fail "Failed due to SwiftLint errors"
|
87
|
+
end
|
75
88
|
end
|
76
89
|
end
|
77
90
|
end
|
@@ -120,7 +133,7 @@ module Danger
|
|
120
133
|
# @return [Array] list of files excluded
|
121
134
|
def excluded_files_from_config(filepath)
|
122
135
|
config = if filepath
|
123
|
-
YAML.load_file(
|
136
|
+
YAML.load_file(filepath)
|
124
137
|
else
|
125
138
|
{"excluded" => []}
|
126
139
|
end
|
@@ -129,7 +142,7 @@ module Danger
|
|
129
142
|
|
130
143
|
# Extract excluded paths
|
131
144
|
return excluded_paths.
|
132
|
-
map { |path| File.join(File.dirname(
|
145
|
+
map { |path| File.join(File.dirname(filepath), path) }.
|
133
146
|
map { |path| File.expand_path(path) }.
|
134
147
|
select { |path| File.exists?(path) || Dir.exists?(path) }
|
135
148
|
end
|
data/lib/version.rb
CHANGED
data/spec/danger_plugin_spec.rb
CHANGED
@@ -71,7 +71,7 @@ module Danger
|
|
71
71
|
@swiftlint.directory = 'some_dir'
|
72
72
|
|
73
73
|
allow_any_instance_of(Swiftlint).to receive(:lint)
|
74
|
-
.with(hash_including(:pwd => @swiftlint.directory))
|
74
|
+
.with(hash_including(:pwd => File.expand_path(@swiftlint.directory)))
|
75
75
|
.and_return(@swiftlint_response)
|
76
76
|
|
77
77
|
@swiftlint.lint_files("spec/fixtures/*.swift")
|
@@ -157,7 +157,7 @@ module Danger
|
|
157
157
|
.with(hash_including(:path => File.expand_path('spec/fixtures/SwiftFile.swift')))
|
158
158
|
.and_return(@swiftlint_response)
|
159
159
|
|
160
|
-
@swiftlint.lint_files("spec/fixtures/*.swift", inline_mode: true)
|
160
|
+
@swiftlint.lint_files("spec/fixtures/*.swift", inline_mode: true, fail_on_error: false)
|
161
161
|
|
162
162
|
status = @swiftlint.status_report
|
163
163
|
expect(status[:errors]).to_not be_empty
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: danger-swiftlint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ash Furrow
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2017-
|
15
|
+
date: 2017-09-08 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: danger
|
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
198
|
rubyforge_project:
|
199
|
-
rubygems_version: 2.6.
|
199
|
+
rubygems_version: 2.6.13
|
200
200
|
signing_key:
|
201
201
|
specification_version: 4
|
202
202
|
summary: A Danger plugin for linting Swift with SwiftLint.
|