Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 5565270

Browse files
authored
Add excluding_issue_ids option (#34)
* Clarify test name * Update Gemfile.lock * Add feature to filter by issue ID Set filter_issue_ids to an array of issue IDs to be ignored. * Add documentation for filter_issue_ids * Bump to version 0.0.11 * Rename to excluding_issue_ids * Update gem version in Gemfile.lock * Rename to excluding_issue_ids in readme and changelog
1 parent 447b63c commit 5565270

7 files changed

+93
-16
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.0.11
2+
3+
- Add `excluding_issue_ids` parameter to skip showing issues with the given IDs, e.g. "MissingTranslation" ([@petitJAM](https://github.com/petitJAM))
4+
15
# 0.0.10
26

37
- Fix `filtering_lines` parameter to also apply to when `inline_mode` is `false` ([@petitJAM](https://github.com/petitJAM))

Gemfile.lock

+23-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
PATH
22
remote: .
33
specs:
4-
danger-android_lint (0.0.9)
4+
danger-android_lint (0.0.11)
55
danger-plugin-api (~> 1.0)
66
oga
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
addressable (2.7.0)
11+
addressable (2.8.0)
1212
public_suffix (>= 2.0.2, < 5.0)
1313
ansi (1.5.0)
1414
ast (2.4.2)
15-
claide (1.0.3)
15+
claide (1.1.0)
1616
claide-plugins (0.9.2)
1717
cork
1818
nap
@@ -21,7 +21,7 @@ GEM
2121
colored2 (3.1.2)
2222
cork (0.3.0)
2323
colored2 (~> 3.1)
24-
danger (8.2.3)
24+
danger (8.5.0)
2525
claide (~> 1.0)
2626
claide-plugins (>= 0.9.2)
2727
colored2 (~> 3.1)
@@ -37,24 +37,34 @@ GEM
3737
danger-plugin-api (1.0.0)
3838
danger (> 2.0)
3939
diff-lcs (1.4.4)
40-
faraday (1.4.2)
40+
faraday (1.10.0)
4141
faraday-em_http (~> 1.0)
4242
faraday-em_synchrony (~> 1.0)
4343
faraday-excon (~> 1.1)
44+
faraday-httpclient (~> 1.0)
45+
faraday-multipart (~> 1.0)
4446
faraday-net_http (~> 1.0)
45-
faraday-net_http_persistent (~> 1.1)
46-
multipart-post (>= 1.2, < 3)
47+
faraday-net_http_persistent (~> 1.0)
48+
faraday-patron (~> 1.0)
49+
faraday-rack (~> 1.0)
50+
faraday-retry (~> 1.0)
4751
ruby2_keywords (>= 0.0.4)
4852
faraday-em_http (1.0.0)
4953
faraday-em_synchrony (1.0.0)
5054
faraday-excon (1.1.0)
5155
faraday-http-cache (2.2.0)
5256
faraday (>= 0.8)
57+
faraday-httpclient (1.0.1)
58+
faraday-multipart (1.0.3)
59+
multipart-post (>= 1.2, < 3)
5360
faraday-net_http (1.0.1)
54-
faraday-net_http_persistent (1.1.0)
61+
faraday-net_http_persistent (1.2.0)
62+
faraday-patron (1.0.0)
63+
faraday-rack (1.0.0)
64+
faraday-retry (1.0.3)
5565
ffi (1.15.3)
5666
formatador (0.3.0)
57-
git (1.8.1)
67+
git (1.10.2)
5868
rchardet (~> 1.8)
5969
guard (2.17.0)
6070
formatador (>= 0.2.4)
@@ -70,7 +80,7 @@ GEM
7080
guard (~> 2.1)
7181
guard-compat (~> 1.1)
7282
rspec (>= 2.99.0, < 4.0)
73-
kramdown (2.3.1)
83+
kramdown (2.3.2)
7484
rexml
7585
kramdown-parser-gfm (1.1.0)
7686
kramdown (~> 2.0)
@@ -86,7 +96,7 @@ GEM
8696
notiffany (0.1.3)
8797
nenv (~> 0.1)
8898
shellany (~> 0.0)
89-
octokit (4.21.0)
99+
octokit (4.22.0)
90100
faraday (>= 0.9)
91101
sawyer (~> 0.8.0, >= 0.5.3)
92102
oga (3.3)
@@ -133,12 +143,12 @@ GEM
133143
ansi
134144
ast
135145
ruby-progressbar (1.11.0)
136-
ruby2_keywords (0.0.4)
146+
ruby2_keywords (0.0.5)
137147
sawyer (0.8.2)
138148
addressable (>= 2.3.5)
139149
faraday (> 0.8, < 2.0)
140150
shellany (0.0.1)
141-
terminal-table (3.0.1)
151+
terminal-table (3.0.2)
142152
unicode-display_width (>= 1.1.1, < 3)
143153
thor (1.1.0)
144154
unicode-display_width (1.7.0)

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,17 @@ android_lint.filtering_lines = true
9292
android_lint.lint
9393
```
9494

95+
#### Filter issues by ID
96+
97+
In some cases you may want to conditionally ignore specific lint warnings without fully disabling
98+
them in your `lintOptions` configuration. To do that, you can pass a list of IDs to the
99+
`excluding_issue_ids` parameter.
100+
101+
```rb
102+
android_lint.excluding_issue_ids = ["MissingTranslation"]
103+
android_lint.lint
104+
```
105+
95106
#### Make Danger comment directly on the line instead of printing a Markdown table (GitHub only)
96107

97108
```rb

lib/android_lint/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module AndroidLint
2-
VERSION = "0.0.10".freeze
2+
VERSION = "0.0.11".freeze
33
end

lib/android_lint/plugin.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,12 @@ def severity
8484
# Only show messages within changed files.
8585
attr_accessor :filtering
8686

87-
# Only shows messages for the modified lines.
87+
# Only show messages for the modified lines.
8888
attr_accessor :filtering_lines
8989

90+
# Only show messages for issues not in this list.
91+
attr_accessor :excluding_issue_ids
92+
9093
# Calls lint task of your gradle project.
9194
# It fails if `gradlew` cannot be found inside current directory.
9295
# It fails if `severity` level is not a valid option.
@@ -167,6 +170,8 @@ def parse_results(results, heading)
167170
message = ""
168171

169172
results.each do |r|
173+
issue_id = r.get('id')
174+
next if excluding_issue_ids && excluding_issue_ids.include?(issue_id)
170175
location = r.xpath('location').first
171176
filename = location.get('file').gsub(dir, "")
172177
next unless (!filtering && !filtering_lines) || (target_files.include? filename)

spec/android_lint_spec.rb

+18-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ module Danger
146146
expect(markdown).to be_nil
147147
end
148148

149-
it 'Doesn`t print anything if no errors were found' do
149+
it 'Doesn`t print anything if no errors were found at the set minimum severity level' do
150150
fake_result = File.open("spec/fixtures/lint-result-without-fatal.xml")
151151
allow(File).to receive(:open).with(@android_lint.report_file).and_return(fake_result)
152152

@@ -188,6 +188,23 @@ module Danger
188188
expect(warn).not_to include("Implicitly using the default locale is a common source of bugs: Use `String.format(Locale, ...)` instead")
189189
end
190190

191+
describe 'excluding_issue_ids' do
192+
before do
193+
fake_result = File.open("spec/fixtures/lint-result-with-everything.xml")
194+
allow(File).to receive(:open).with(@android_lint.report_file).and_return(fake_result)
195+
end
196+
197+
it 'Does not print ignored issues' do
198+
@android_lint.excluding_issue_ids = ["MissingTranslation", "RtlEnabled"]
199+
@android_lint.lint
200+
201+
markdown = @android_lint.status_report[:markdowns].first.message
202+
expect(markdown).to include("Implicitly using the default locale")
203+
expect(markdown).not_to include("is not translated in")
204+
expect(markdown).not_to include("The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest")
205+
end
206+
end
207+
191208
describe "for a modified file" do
192209
before do
193210
allow(Dir).to receive(:pwd).and_return("/Users/shivampokhriyal/Documents/projects/Commcare/commcare-android")

spec/fixtures/lint-result-with-everything.xml

+30
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,34 @@ If you want the methods to just perform ASCII replacement, for example to conver
6161
column="16"/>
6262
</issue>
6363

64+
<issue
65+
id="MissingTranslation"
66+
severity="Error"
67+
message="&quot;someStringResource&quot; is not translated in &quot;de&quot; (German), &quot;fi&quot; (Finnish), &quot;ru&quot; (Russian), &quot;sv&quot; (Swedish), &q
68+
uot;ko&quot; (Korean), &quot;pt&quot; (Portuguese), &quot;el&quot; (Greek), &quot;en&quot; (English), &quot;it&quot; (Italian), &quot;fr&quot; (French), &quot;es&quot; (Spanish), &quot;cs&q
69+
uot; (Czech), &quot;nb&quot; (Norwegian Bokmål), &quot;ja&quot; (Japanese), &quot;da&quot; (Danish), &quot;ca&quot; (Catalan), &quot;nl&quot; (Dutch)"
70+
category="Correctness:Messages"
71+
priority="8"
72+
summary="Incomplete translation"
73+
explanation="If an application has more than one locale, then all the strings declared in one language should also be translated in all other languages.&#xA;&#xA;If the string should **not** be translated, you can add the attribute `translatable=&quot;false&quot;` on the `&lt;string>` element, or you can define all your non-translatable strings in a resource file called `donottranslate.xml`. Or, you can ignore the issue with a `tools:ignore=&quot;MissingTranslation&quot;` attribute.&#xA;&#xA;You can tell lint (and other tools) which language is the default language in your `res/values/` folder by specifying `tools:locale=&quot;languageCode&quot;` for the root `&lt;resources>` element in your resource file. (The `tools` prefix refers to the namespace declaration `http://schemas.android.com/tools`.)"
74+
errorLine1=" &lt;string name=&quot;someStringResource&quot;>Hello this is a string resource.&lt;/string>"
75+
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
76+
<location
77+
file="/Users/gustavo/Developer/app-android/app/src/main/res/values/strings.xml"
78+
line="10"
79+
column="13"/>
80+
</issue>
81+
82+
<issue
83+
id="RtlEnabled"
84+
severity="Warning"
85+
message="The project references RTL attributes, but does not explicitly enable or disable RTL support with `android:supportsRtl` in the manifest"
86+
category="Internationalization:Bidirectional Text"
87+
priority="3"
88+
summary="Using RTL attributes without enabling RTL support"
89+
explanation="To enable right-to-left support, when running on API 17 and higher, you must set the `android:supportsRtl` attribute in the manifest `&lt;application>` element.&#xA;&#xA;If you have started adding RTL attributes, but have not yet finished the migration, you can set the attribute to false to satisfy this lint check.">
90+
<location
91+
file="/Users/gustavo/Developer/app-android/app/src/main/AndroidManifest.xml"/>
92+
</issue>
93+
6494
</issues>

0 commit comments

Comments
 (0)