Граф коммитов

120 Коммитов

Автор SHA1 Сообщение Дата
Robert Mosolgo 90e6d5e109 Fix for RuboCop 2018-09-13 09:58:59 -04:00
Robert Mosolgo 6b9f2c3bcf Update ERB test usage 2018-09-13 09:58:23 -04:00
Garen J. Torikian 725ade82f6
💎 bump to 0.10.0 2018-03-08 08:31:06 -05:00
Garen Torikian 67860eb72d
Merge pull request #26 from phlcastro/fix-lint-unneededdisable-error
Fix warnings when using rubocop 0.53.0
2018-03-08 08:30:05 -05:00
Paulo Henrique Castro 516d2a7a1f
fixed Lint/BlockAlignment 2018-03-08 17:28:52 +10:00
Paulo Henrique Castro 0e19b4d806
fixed UnneededCopDisableDirective 2018-03-08 17:24:43 +10:00
Garen J. Torikian 65d8163f8f
💎 bump to 0.9.1 2018-03-07 18:18:24 -05:00
Garen Torikian 7bf6374a20
Merge pull request #24 from github/avoid-dynamic-dispatch
Add section about avoiding dynamic dispatch
2018-03-05 17:03:45 -05:00
Max Veytsman 803913be6c Change bad/good to avoid/prefer 2018-03-05 15:08:06 -05:00
Garen Torikian 9ee904af27
Merge pull request #25 from github/fix-warnings
Remove deprecated linters
2018-03-05 13:36:58 -05:00
Garen J. Torikian 01864995a9
Remove deprecated linters 2018-03-05 13:31:54 -05:00
Max Veytsman 2fc2cfb5c6
Add section about avoiding dynamic dispatch 2018-03-05 13:08:23 -05:00
Garen J. Torikian cdf9552677
💎 bump to 0.9.0 2018-03-01 14:05:26 -05:00
Garen Torikian 58830a46e1
Merge pull request #23 from github/adjust-enforced-hash-syntax
Don't allow mixed hashes
2018-03-01 14:03:11 -05:00
Mike Skalnik c24e45d97f
Don't mix hash rockets and ruby19 syntax 🔄 2018-03-01 10:52:14 -08:00
Garen Torikian dc78d6add4
Merge pull request #22 from nicolasleger/patch-1
[CI] Test against Ruby 2.x
2018-02-13 18:43:52 -06:00
Nicolas Leger f14f7e8423
[CI] Test against Ruby 2.x 2018-02-14 00:33:58 +01:00
Garen J. Torikian 8bfd901807
💎 bump to 0.8.1 2017-12-19 11:15:38 -05:00
Garen J. Torikian ba5338f082
Remove obsolete rule 2017-12-19 11:15:27 -05:00
Garen J. Torikian c8345e1b11
💎 bump to 0.8.0 2017-12-19 10:41:35 -05:00
Garen J. Torikian 5207c1f1e0
Merge branch 'joshRpowell-joshRpowell-v0.52.0' 2017-12-19 10:41:13 -05:00
Garen J. Torikian 801a3b5808
💎 bump to 0.7.0 2017-12-19 10:38:35 -05:00
Garen J. Torikian e1a17b61ff
Bump .gitignore 2017-12-19 10:38:35 -05:00
Christian Joudrey b89aa1dd7d
Enable Layout/SpaceBeforeBlockBraces and Layout/SpaceInsideBlockBraces cops 2017-12-19 10:38:34 -05:00
Garen J. Torikian 60121c8659
💎 bump to 0.7.0 2017-12-19 10:34:12 -05:00
Garen J. Torikian f6c7349e35
Bump .gitignore 2017-12-19 10:33:53 -05:00
Christian Joudrey 3846c3ba8a
Merge pull request #19 from github/blocks-spacing
Enable Layout/SpaceBeforeBlockBraces and Layout/SpaceInsideBlockBraces cops
2017-12-19 10:31:41 -05:00
Josh Powell 87b32d76e1
Update rubocop v0.52.0
Update with SpaceInsideArrayLiteralBrackets & SpaceInsideReferenceBrackets
per PR in v0.52.0 https://github.com/bbatsov/rubocop/pull/5149/files
2017-12-15 12:21:35 -05:00
Christian Joudrey a40b21d25c
Enable Layout/SpaceBeforeBlockBraces and Layout/SpaceInsideBlockBraces cops 2017-12-01 15:04:56 -05:00
Garen J. Torikian cc9e8b217c
Add bundler tasks 2017-11-22 12:14:13 -05:00
Garen J. Torikian 7484f0aaaf
Bump to 0.6.0 2017-11-22 12:13:43 -05:00
Garen J. Torikian 38de8d0de3
Loosen up 2017-11-22 12:13:32 -05:00
Garen Torikian e204ef1906
Merge pull request #17 from chilcutt/fixes_for_rubocop_51
Fixes for Rubocop v0.51.0
2017-11-22 12:11:56 -05:00
Kyle Chilcutt 1b16912d9a
Re-alphabetize config/default.yml
In order to make it easier to find what you're looking for, alphabetize
the cops in the default file.
2017-10-31 09:52:37 -07:00
Kyle Chilcutt 9f083acd94
Update namespace on Style cops
Several Style cops have been moved to the Naming namespace. Update the
cop namespaces to match and remove errors.
2017-10-31 09:40:40 -07:00
Kyle Chilcutt 277bdfa060
Update LiteralInCondition to LiteralAsCondition
Rubocop updated Lint/LiteralInCondition to Lint/LiteralAsCondition,
update our default.yml to match the new name.
2017-10-31 09:37:12 -07:00
Kyle Chilcutt 191d8c4285
Remove cop for Lint/InvalidCharacterLiteral
No longer supported in rubocop v0.51.0.
2017-10-28 13:35:20 -07:00
Kyle Chilcutt 806b21bf0c
Update cops to match rubocop API changes
The API for rubocop has changed and is expecting `nil?` instead of `nil`
for node matchers. Update all instances to `nil?`.

The API for `add_offense` has been updated to use named parameters.
Update callers to match and not raise warnings.
2017-10-28 13:32:48 -07:00
Kyle Chilcutt fdd33b749f
Update rubocop in gemspec to ~> 0.51.0
Minor version changes of rubocop have breaking changes, pin dependency
to patch level of v0.51.
2017-10-28 13:29:16 -07:00
Joshua Peek 526d1bf54d RuboCop GitHub 0.5.0 2017-06-22 11:06:48 -04:00
Joshua Peek b5cd08a178 Merge pull request #10 from tetsuya/style-to-layout
Change department from Style to Layout
2017-06-22 11:05:54 -04:00
tetsuya 85012128e1 Bump rubocop dependency to ~> 0.49 2017-06-22 14:04:30 +09:00
tetsuya b2cebfd9d3 Add erubis as development dependency 2017-06-09 18:37:20 +09:00
tetsuya 3b770a9d9a Change department from Style to Layout 2017-06-09 18:16:39 +09:00
Joshua Peek baee432bc4 RuboCop GitHub 0.4.2 2017-03-30 11:53:17 -07:00
Joshua Peek 6a993680d9 Merge pull request #9 from muan/patch-1
Include guides in gem
2017-03-29 23:29:28 -07:00
Mu-An ✌️ Chiou 7e8beb2fa9 Include guides in gem 2017-03-30 13:47:39 +08:00
Joshua Peek c68a909992 RuboCop GitHub 0.4.1 2017-03-24 11:56:15 -07:00
Joshua Peek a7d8078ab0 Fix render layout with block pass 2017-03-24 11:55:49 -07:00
Joshua Peek 2043c9d677 Ignore inline 2017-03-24 11:50:14 -07:00