puppet-lint-array_formatting-check 0.11.0 → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 253a737a788c7d2d46e0452562fa67d5177f096204039fb294f98633c5435b70
4
- data.tar.gz: 44a81890888cd86b28cd8ba156b311f2e370b6a02f6a5ba3a1d8db74e87652aa
3
+ metadata.gz: 6db238b016698657a3c3d1c3356b79b3b5bedd4b8649ba7563af25928c567f57
4
+ data.tar.gz: 4937cb887937b74910d103cdf29c334c738f8b8d3fc51814a29d3e1ffdbd0977
5
5
  SHA512:
6
- metadata.gz: 927806a62b811ac503f789a3f9a7eca73307bf162dc16c42eb78f5368983732dcf3ebf1d9df8c7aec2261a2b374c032e09c9364c85871732415a14f48e97f8a5
7
- data.tar.gz: 13c068cb3b5a180d3f0c42dc799686343bed9eae54c450e4ed8d307859f21efb50ac8ce2ed343070032bb2bd73a7d0746807cb20db8726e42754e98a9dec9a20
6
+ metadata.gz: 117612e561d787d5bc9a5c5a1fdfb67ed13b763811e3bd8152460fc306fb5b06fedafa9370305f8a3f35156a1b6fd312e7d98916f72dccd7d957521fbcc4f011
7
+ data.tar.gz: 7693dd7c1919bf1ba0917dae4786793ff58c99805f6c2e30c211a7b3799e4cc157c1652a553215c29fd6ad5d4e9e23dea5d18b4667585a9ff6ad310a8d4a6a57
@@ -36,7 +36,7 @@ PuppetLint.new_check(:array_formatting) do
36
36
  # We're really only keeping track of array *items* here for the sake of the length calculation.
37
37
  # We're going to ignore everything that doesn't count as an *item*, like commas, comments, and whitespaces
38
38
  # We need to push NEWLINE(s) though because there might be too many
39
- elsif !%i[COMMA COMMENT WHITESPACE INDENT].include?(token.type)
39
+ elsif !%i[COMMA WHITESPACE INDENT].include?(token.type)
40
40
  manifest_array.push token
41
41
  end
42
42
  # Advance. (We're still looking for that RBRACK)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet-lint-array_formatting-check
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Manzer