origen 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. checksums.yaml +4 -4
  2. data/bin/ctags +0 -0
  3. data/bin/origen +165 -1
  4. data/bin/rgen +2 -0
  5. data/config/application.rb +141 -0
  6. data/config/commands.rb +72 -0
  7. data/config/development.rb +7 -0
  8. data/config/environment.rb +0 -0
  9. data/config/rgen.policy +7 -0
  10. data/config/rubocop/easy.yml +620 -0
  11. data/config/rubocop/easy_disabled.yml +271 -0
  12. data/config/rubocop/easy_enabled.yml +731 -0
  13. data/config/rubocop/strict.yml +620 -0
  14. data/config/rubocop/strict_disabled.yml +247 -0
  15. data/config/rubocop/strict_enabled.yml +755 -0
  16. data/config/users.rb +20 -0
  17. data/config/version.rb +1 -1
  18. data/helpers/url.rb +68 -0
  19. data/lib/c99/doc_interface.rb +56 -0
  20. data/lib/c99/j750_interface.rb +85 -0
  21. data/lib/c99/nvm.rb +89 -0
  22. data/lib/c99/target/mock2.rb +1 -0
  23. data/lib/c99/target/subdir/mock3.rb +1 -0
  24. data/lib/option_parser/optparse.rb +12 -0
  25. data/lib/origen/acronyms.rb +60 -0
  26. data/lib/origen/application/command_dispatcher.rb +12 -0
  27. data/lib/origen/application/configuration.rb +206 -0
  28. data/lib/origen/application/configuration_manager.rb +78 -0
  29. data/lib/origen/application/deployer.rb +367 -0
  30. data/lib/origen/application/environment.rb +186 -0
  31. data/lib/origen/application/lsf.rb +145 -0
  32. data/lib/origen/application/lsf_manager.rb +657 -0
  33. data/lib/origen/application/plugins_manager.rb +280 -0
  34. data/lib/origen/application/release.rb +359 -0
  35. data/lib/origen/application/runner.rb +246 -0
  36. data/lib/origen/application/statistics.rb +191 -0
  37. data/lib/origen/application/target.rb +374 -0
  38. data/lib/origen/application/version_tracker.rb +59 -0
  39. data/lib/origen/application/workspace_manager.rb +151 -0
  40. data/lib/origen/application.rb +746 -0
  41. data/lib/origen/bugs/bug.rb +36 -0
  42. data/lib/origen/bugs.rb +45 -0
  43. data/lib/origen/callbacks.rb +35 -0
  44. data/lib/origen/chip_mode.rb +118 -0
  45. data/lib/origen/chip_package.rb +461 -0
  46. data/lib/origen/client.rb +87 -0
  47. data/lib/origen/code_generators/actions.rb +258 -0
  48. data/lib/origen/code_generators/base.rb +57 -0
  49. data/lib/origen/code_generators/bundler.rb +17 -0
  50. data/lib/origen/code_generators/gem_setup.rb +49 -0
  51. data/lib/origen/code_generators/rake.rb +13 -0
  52. data/lib/origen/code_generators/rspec.rb +12 -0
  53. data/lib/origen/code_generators/semver.rb +39 -0
  54. data/lib/origen/code_generators/timever.rb +37 -0
  55. data/lib/origen/code_generators.rb +111 -0
  56. data/lib/origen/commands/add.rb +12 -0
  57. data/lib/origen/commands/compile.rb +62 -0
  58. data/lib/origen/commands/ctags.rb +9 -0
  59. data/lib/origen/commands/dispatch.rb +22 -0
  60. data/lib/origen/commands/environment.rb +11 -0
  61. data/lib/origen/commands/fetch.rb +63 -0
  62. data/lib/origen/commands/generate.rb +130 -0
  63. data/lib/origen/commands/interactive.rb +73 -0
  64. data/lib/origen/commands/lint.rb +82 -0
  65. data/lib/origen/commands/lsf.rb +93 -0
  66. data/lib/origen/commands/merge.rb +55 -0
  67. data/lib/origen/commands/modifications.rb +12 -0
  68. data/lib/origen/commands/new.rb +113 -0
  69. data/lib/origen/commands/plugin.rb +105 -0
  70. data/lib/origen/commands/program.rb +70 -0
  71. data/lib/origen/commands/rc.rb +442 -0
  72. data/lib/origen/commands/save.rb +56 -0
  73. data/lib/origen/commands/target.rb +27 -0
  74. data/lib/origen/commands/time.rb +127 -0
  75. data/lib/origen/commands/version.rb +17 -0
  76. data/lib/origen/commands/web.rb +221 -0
  77. data/lib/origen/commands.rb +272 -0
  78. data/lib/origen/commands_global.rb +76 -0
  79. data/lib/origen/controller.rb +94 -0
  80. data/lib/origen/core_ext/array.rb +23 -0
  81. data/lib/origen/core_ext/bignum.rb +36 -0
  82. data/lib/origen/core_ext/enumerable.rb +76 -0
  83. data/lib/origen/core_ext/fixnum.rb +46 -0
  84. data/lib/origen/core_ext/hash.rb +52 -0
  85. data/lib/origen/core_ext/module.rb +14 -0
  86. data/lib/origen/core_ext/numeric.rb +126 -0
  87. data/lib/origen/core_ext/object.rb +13 -0
  88. data/lib/origen/core_ext/range.rb +7 -0
  89. data/lib/origen/core_ext/string.rb +124 -0
  90. data/lib/origen/core_ext.rb +10 -0
  91. data/lib/origen/database/key_value_store.rb +111 -0
  92. data/lib/origen/database/key_value_stores.rb +108 -0
  93. data/lib/origen/database.rb +6 -0
  94. data/lib/origen/encodings.rb +102 -0
  95. data/lib/origen/features/feature.rb +22 -0
  96. data/lib/origen/features.rb +104 -0
  97. data/lib/origen/file_handler.rb +429 -0
  98. data/lib/origen/generator/comparator.rb +56 -0
  99. data/lib/origen/generator/compiler.rb +277 -0
  100. data/lib/origen/generator/flow.rb +49 -0
  101. data/lib/origen/generator/job.rb +131 -0
  102. data/lib/origen/generator/pattern.rb +356 -0
  103. data/lib/origen/generator/pattern_finder.rb +155 -0
  104. data/lib/origen/generator/pattern_iterator.rb +55 -0
  105. data/lib/origen/generator/renderer.rb +113 -0
  106. data/lib/origen/generator/resources.rb +40 -0
  107. data/lib/origen/generator/stage.rb +89 -0
  108. data/lib/origen/generator.rb +85 -0
  109. data/lib/origen/global_methods.rb +205 -0
  110. data/lib/origen/import_manager.rb +596 -0
  111. data/lib/origen/location/base.rb +116 -0
  112. data/lib/origen/location/map.rb +83 -0
  113. data/lib/origen/location.rb +6 -0
  114. data/lib/origen/log.rb +217 -0
  115. data/lib/origen/logger_methods.rb +56 -0
  116. data/lib/origen/mode.rb +61 -0
  117. data/lib/origen/model.rb +267 -0
  118. data/lib/origen/model_initializer.rb +45 -0
  119. data/lib/origen/nvm/block_array.rb +72 -0
  120. data/lib/origen/nvm.rb +6 -0
  121. data/lib/origen/parameters/live.rb +22 -0
  122. data/lib/origen/parameters/missing.rb +28 -0
  123. data/lib/origen/parameters/set.rb +144 -0
  124. data/lib/origen/parameters.rb +107 -0
  125. data/lib/origen/pdm.rb +218 -0
  126. data/lib/origen/pins/function_proxy.rb +36 -0
  127. data/lib/origen/pins/ground_pin.rb +6 -0
  128. data/lib/origen/pins/pin.rb +860 -0
  129. data/lib/origen/pins/pin_bank.rb +349 -0
  130. data/lib/origen/pins/pin_clock.rb +124 -0
  131. data/lib/origen/pins/pin_collection.rb +492 -0
  132. data/lib/origen/pins/pin_common.rb +206 -0
  133. data/lib/origen/pins/port.rb +268 -0
  134. data/lib/origen/pins/power_pin.rb +30 -0
  135. data/lib/origen/pins.rb +696 -0
  136. data/lib/origen/registers/bit.rb +562 -0
  137. data/lib/origen/registers/bit_collection.rb +787 -0
  138. data/lib/origen/registers/container.rb +288 -0
  139. data/lib/origen/registers/domain.rb +16 -0
  140. data/lib/origen/registers/reg.rb +1406 -0
  141. data/lib/origen/registers/reg_collection.rb +24 -0
  142. data/lib/origen/registers.rb +652 -0
  143. data/lib/origen/regression_manager.rb +251 -0
  144. data/lib/origen/remote_manager.rb +340 -0
  145. data/lib/origen/revision_control/base.rb +257 -0
  146. data/lib/origen/revision_control/design_sync.rb +276 -0
  147. data/lib/origen/revision_control/git.rb +243 -0
  148. data/lib/origen/revision_control/subversion.rb +6 -0
  149. data/lib/origen/revision_control.rb +44 -0
  150. data/lib/origen/ruby_version_check.rb +131 -0
  151. data/lib/origen/site_config.rb +61 -0
  152. data/lib/origen/specs/checkers.rb +103 -0
  153. data/lib/origen/specs/creation_info.rb +17 -0
  154. data/lib/origen/specs/doc_resource.rb +91 -0
  155. data/lib/origen/specs/exhibit.rb +17 -0
  156. data/lib/origen/specs/mode_select.rb +16 -0
  157. data/lib/origen/specs/note.rb +17 -0
  158. data/lib/origen/specs/override.rb +21 -0
  159. data/lib/origen/specs/power_supply.rb +13 -0
  160. data/lib/origen/specs/spec.rb +226 -0
  161. data/lib/origen/specs/version_history.rb +14 -0
  162. data/lib/origen/specs.rb +552 -0
  163. data/lib/origen/sub_blocks.rb +298 -0
  164. data/lib/origen/tester/api.rb +277 -0
  165. data/lib/origen/tester/bdm/bdm.rb +25 -0
  166. data/lib/origen/tester/command_based_tester.rb +46 -0
  167. data/lib/origen/tester/doc/doc.rb +226 -0
  168. data/lib/origen/tester/doc/generator/flow.rb +71 -0
  169. data/lib/origen/tester/doc/generator/flow_line.rb +203 -0
  170. data/lib/origen/tester/doc/generator/test.rb +68 -0
  171. data/lib/origen/tester/doc/generator/test_group.rb +66 -0
  172. data/lib/origen/tester/doc/generator/tests.rb +47 -0
  173. data/lib/origen/tester/doc/generator.rb +126 -0
  174. data/lib/origen/tester/doc/model.rb +162 -0
  175. data/lib/origen/tester/generator/flow_control_api.rb +606 -0
  176. data/lib/origen/tester/generator/identity_map.rb +25 -0
  177. data/lib/origen/tester/generator/placeholder.rb +13 -0
  178. data/lib/origen/tester/generator/test_numberer.rb +25 -0
  179. data/lib/origen/tester/generator.rb +271 -0
  180. data/lib/origen/tester/interface.rb +154 -0
  181. data/lib/origen/tester/j750/files.rb +45 -0
  182. data/lib/origen/tester/j750/generator/flow.rb +123 -0
  183. data/lib/origen/tester/j750/generator/flow_line.rb +288 -0
  184. data/lib/origen/tester/j750/generator/patgroup.rb +111 -0
  185. data/lib/origen/tester/j750/generator/patgroups.rb +41 -0
  186. data/lib/origen/tester/j750/generator/patset.rb +111 -0
  187. data/lib/origen/tester/j750/generator/patsets.rb +41 -0
  188. data/lib/origen/tester/j750/generator/templates/flow.txt.erb +9 -0
  189. data/lib/origen/tester/j750/generator/templates/instances.txt.erb +16 -0
  190. data/lib/origen/tester/j750/generator/templates/patgroups.txt.erb +8 -0
  191. data/lib/origen/tester/j750/generator/templates/patsets.txt.erb +10 -0
  192. data/lib/origen/tester/j750/generator/test_instance.rb +846 -0
  193. data/lib/origen/tester/j750/generator/test_instance_group.rb +60 -0
  194. data/lib/origen/tester/j750/generator/test_instances.rb +182 -0
  195. data/lib/origen/tester/j750/generator.rb +203 -0
  196. data/lib/origen/tester/j750/j750.rb +845 -0
  197. data/lib/origen/tester/j750/j750_hpt.rb +35 -0
  198. data/lib/origen/tester/j750/parser/ac_spec.rb +11 -0
  199. data/lib/origen/tester/j750/parser/ac_specs.rb +0 -0
  200. data/lib/origen/tester/j750/parser/dc_spec.rb +36 -0
  201. data/lib/origen/tester/j750/parser/dc_specs.rb +50 -0
  202. data/lib/origen/tester/j750/parser/descriptions.rb +340 -0
  203. data/lib/origen/tester/j750/parser/flow.rb +111 -0
  204. data/lib/origen/tester/j750/parser/flow_line.rb +207 -0
  205. data/lib/origen/tester/j750/parser/flows.rb +23 -0
  206. data/lib/origen/tester/j750/parser/pattern_set.rb +94 -0
  207. data/lib/origen/tester/j750/parser/pattern_sets.rb +33 -0
  208. data/lib/origen/tester/j750/parser/test_instance.rb +322 -0
  209. data/lib/origen/tester/j750/parser/test_instances.rb +26 -0
  210. data/lib/origen/tester/j750/parser/timeset.rb +15 -0
  211. data/lib/origen/tester/j750/parser/timesets.rb +0 -0
  212. data/lib/origen/tester/j750/parser.rb +104 -0
  213. data/lib/origen/tester/jlink/jlink.rb +33 -0
  214. data/lib/origen/tester/parser/description_lookup.rb +64 -0
  215. data/lib/origen/tester/parser/searchable_array.rb +32 -0
  216. data/lib/origen/tester/parser/searchable_hash.rb +32 -0
  217. data/lib/origen/tester/parser.rb +24 -0
  218. data/lib/origen/tester/time.rb +338 -0
  219. data/lib/origen/tester/timing.rb +253 -0
  220. data/lib/origen/tester/ultraflex/files.rb +45 -0
  221. data/lib/origen/tester/ultraflex/generator/flow.rb +119 -0
  222. data/lib/origen/tester/ultraflex/generator/flow_line.rb +269 -0
  223. data/lib/origen/tester/ultraflex/generator/patgroup.rb +111 -0
  224. data/lib/origen/tester/ultraflex/generator/patgroups.rb +41 -0
  225. data/lib/origen/tester/ultraflex/generator/patset.rb +111 -0
  226. data/lib/origen/tester/ultraflex/generator/patsets.rb +41 -0
  227. data/lib/origen/tester/ultraflex/generator/templates/flow.txt.erb +9 -0
  228. data/lib/origen/tester/ultraflex/generator/templates/instances.txt.erb +16 -0
  229. data/lib/origen/tester/ultraflex/generator/templates/patgroups.txt.erb +8 -0
  230. data/lib/origen/tester/ultraflex/generator/templates/patsets.txt.erb +10 -0
  231. data/lib/origen/tester/ultraflex/generator/test_instance.rb +622 -0
  232. data/lib/origen/tester/ultraflex/generator/test_instance_group.rb +60 -0
  233. data/lib/origen/tester/ultraflex/generator/test_instances.rb +174 -0
  234. data/lib/origen/tester/ultraflex/generator.rb +200 -0
  235. data/lib/origen/tester/ultraflex/parser/ac_spec.rb +11 -0
  236. data/lib/origen/tester/ultraflex/parser/ac_specs.rb +0 -0
  237. data/lib/origen/tester/ultraflex/parser/dc_spec.rb +36 -0
  238. data/lib/origen/tester/ultraflex/parser/dc_specs.rb +50 -0
  239. data/lib/origen/tester/ultraflex/parser/descriptions.rb +342 -0
  240. data/lib/origen/tester/ultraflex/parser/flow.rb +111 -0
  241. data/lib/origen/tester/ultraflex/parser/flow_line.rb +207 -0
  242. data/lib/origen/tester/ultraflex/parser/flows.rb +23 -0
  243. data/lib/origen/tester/ultraflex/parser/pattern_set.rb +94 -0
  244. data/lib/origen/tester/ultraflex/parser/pattern_sets.rb +33 -0
  245. data/lib/origen/tester/ultraflex/parser/test_instance.rb +262 -0
  246. data/lib/origen/tester/ultraflex/parser/test_instances.rb +26 -0
  247. data/lib/origen/tester/ultraflex/parser/timeset.rb +15 -0
  248. data/lib/origen/tester/ultraflex/parser/timesets.rb +0 -0
  249. data/lib/origen/tester/ultraflex/parser.rb +104 -0
  250. data/lib/origen/tester/ultraflex/ultraflex.rb +759 -0
  251. data/lib/origen/tester/v93k/generator/flow.rb +63 -0
  252. data/lib/origen/tester/v93k/generator/flow_node/print.rb +10 -0
  253. data/lib/origen/tester/v93k/generator/flow_node.rb +17 -0
  254. data/lib/origen/tester/v93k/generator/pattern.rb +16 -0
  255. data/lib/origen/tester/v93k/generator/pattern_master.rb +54 -0
  256. data/lib/origen/tester/v93k/generator/templates/_test_method.txt.erb +6 -0
  257. data/lib/origen/tester/v93k/generator/templates/_test_suite.txt.erb +11 -0
  258. data/lib/origen/tester/v93k/generator/templates/template.flow.erb +121 -0
  259. data/lib/origen/tester/v93k/generator/templates/template.pmfl.erb +9 -0
  260. data/lib/origen/tester/v93k/generator/test_function.rb +103 -0
  261. data/lib/origen/tester/v93k/generator/test_functions.rb +79 -0
  262. data/lib/origen/tester/v93k/generator/test_method.rb +46 -0
  263. data/lib/origen/tester/v93k/generator/test_methods.rb +75 -0
  264. data/lib/origen/tester/v93k/generator/test_suite.rb +54 -0
  265. data/lib/origen/tester/v93k/generator/test_suites.rb +65 -0
  266. data/lib/origen/tester/v93k/generator.rb +80 -0
  267. data/lib/origen/tester/v93k/v93k.rb +420 -0
  268. data/lib/origen/tester/vector.rb +86 -0
  269. data/lib/origen/tester/vector_generator.rb +633 -0
  270. data/lib/origen/tester/vector_pipeline.rb +150 -0
  271. data/lib/origen/tester.rb +56 -0
  272. data/lib/origen/top_level.rb +134 -0
  273. data/lib/origen/users/ldap.rb +65 -0
  274. data/lib/origen/users/user.rb +149 -0
  275. data/lib/origen/users.rb +30 -0
  276. data/lib/origen/utility/block_args.rb +93 -0
  277. data/lib/origen/utility/csv_data.rb +110 -0
  278. data/lib/origen/utility/design_sync.rb +494 -0
  279. data/lib/origen/utility/diff.rb +158 -0
  280. data/lib/origen/utility/input_capture.rb +121 -0
  281. data/lib/origen/utility/mailer.rb +143 -0
  282. data/lib/origen/utility/s_record.rb +205 -0
  283. data/lib/origen/utility/time_and_date.rb +30 -0
  284. data/lib/origen/utility.rb +12 -0
  285. data/lib/origen/version_checker.rb +117 -0
  286. data/lib/origen/version_string.rb +356 -0
  287. data/lib/origen.rb +648 -0
  288. data/lib/tasks/gem.rake +27 -22
  289. data/origen_site_config.yml +36 -0
  290. data/source_setup +17 -0
  291. data/spec/format/rgen_formatter.rb +14 -0
  292. data/templates/api_doc/README.txt.erb +24 -0
  293. data/templates/code_generators/gemfile_app.rb +4 -0
  294. data/templates/code_generators/gemfile_plugin.rb +6 -0
  295. data/templates/code_generators/gemspec.rb +33 -0
  296. data/templates/code_generators/rakefile.rb +10 -0
  297. data/templates/code_generators/spec_helper.rb +49 -0
  298. data/templates/code_generators/version.rb +8 -0
  299. data/templates/code_generators/version_time.rb +3 -0
  300. data/templates/git/gitignore.erb +33 -0
  301. data/templates/j750/_vt_flow.txt.erb +8 -0
  302. data/templates/j750/_vt_instances.txt.erb +4 -0
  303. data/templates/j750/program_sheet.txt.erb +9 -0
  304. data/templates/nanoc/Rules +74 -0
  305. data/templates/nanoc/config.yaml +77 -0
  306. data/templates/nanoc/content/favicon.ico +0 -0
  307. data/templates/nanoc/layouts/bootstrap.html.erb +63 -0
  308. data/templates/nanoc/layouts/bootstrap3.html.erb +71 -0
  309. data/templates/nanoc/layouts/freescale.html.erb +79 -0
  310. data/templates/nanoc/lib/bootstrap_filter.rb +49 -0
  311. data/templates/nanoc/lib/codeblocks_filter.rb +41 -0
  312. data/templates/nanoc/lib/default.rb +2 -0
  313. data/templates/nanoc/lib/gzip_filter.rb +16 -0
  314. data/templates/nanoc/lib/haml_code_filter.rb +41 -0
  315. data/templates/nanoc/lib/helpers.rb +1 -0
  316. data/templates/nanoc/lib/search_filter.rb +62 -0
  317. data/templates/nanoc_dynamic/content/search.js.erb +92 -0
  318. data/templates/shared/web/_logo.html +10 -0
  319. data/templates/test/_inline_sub.txt.erb +2 -0
  320. data/templates/test/environment.txt.erb +1 -0
  321. data/templates/test/inline.txt.erb +11 -0
  322. data/templates/test/inspections.txt.erb +19 -0
  323. data/templates/test/set1/_sub1.txt.erb +12 -0
  324. data/templates/test/set1/_sub4.txt.erb +1 -0
  325. data/templates/test/set1/_sub5.txt.erb +1 -0
  326. data/templates/test/set1/main.txt.erb +53 -0
  327. data/templates/test/set1/sub_dir/_sub2.txt.erb +20 -0
  328. data/templates/test/set1/sub_dir/_sub3.txt.erb +12 -0
  329. data/templates/test/set1/sub_dir/main2.txt.erb +4 -0
  330. data/templates/test/set2/template_with_no_erb_1.txt +9 -0
  331. data/templates/test/set2/template_with_no_erb_2.txt +9 -0
  332. data/templates/test/set3/_layout.html.erb +4 -0
  333. data/templates/test/set3/content.html.erb +6 -0
  334. data/templates/time/filter.rb.erb +15 -0
  335. data/templates/time/rules.rb.erb +45 -0
  336. metadata +639 -5
@@ -0,0 +1,731 @@
1
+ # These are all the cops that are enabled in the strict configuration.
2
+
3
+ Style/AccessModifierIndentation:
4
+ Description: Check indentation of private/protected visibility modifiers.
5
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
6
+ Enabled: true
7
+
8
+ Style/Alias:
9
+ Description: 'Use alias_method instead of alias.'
10
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
11
+ Enabled: true
12
+
13
+ Style/AlignArray:
14
+ Description: >-
15
+ Align the elements of an array literal if they span more than
16
+ one line.
17
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays'
18
+ Enabled: true
19
+
20
+ Style/AlignHash:
21
+ Description: >-
22
+ Align the elements of a hash literal if they span more than
23
+ one line.
24
+ Enabled: true
25
+
26
+ Style/AlignParameters:
27
+ Description: >-
28
+ Align the parameters of a method call if they span more
29
+ than one line.
30
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-double-indent'
31
+ Enabled: true
32
+
33
+ Style/ArrayJoin:
34
+ Description: 'Use Array#join instead of Array#*.'
35
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
36
+ Enabled: true
37
+
38
+ Style/AsciiComments:
39
+ Description: 'Use only ascii symbols in comments.'
40
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
41
+ Enabled: true
42
+
43
+ Style/AsciiIdentifiers:
44
+ Description: 'Use only ascii symbols in identifiers.'
45
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
46
+ Enabled: true
47
+
48
+ Style/Attr:
49
+ Description: 'Checks for uses of Module#attr.'
50
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
51
+ Enabled: true
52
+
53
+ Style/BeginBlock:
54
+ Description: 'Avoid the use of BEGIN blocks.'
55
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-BEGIN-blocks'
56
+ Enabled: true
57
+
58
+ Style/BarePercentLiterals:
59
+ Description: 'Checks if usage of %() or %Q() matches configuration.'
60
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q-shorthand'
61
+ Enabled: true
62
+
63
+ Style/BlockComments:
64
+ Description: 'Do not use block comments.'
65
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-block-comments'
66
+ Enabled: true
67
+
68
+ Style/BlockEndNewline:
69
+ Description: 'Put end statement of multiline block on its own line.'
70
+ Enabled: true
71
+
72
+ Style/BracesAroundHashParameters:
73
+ Description: 'Enforce braces style around hash parameters.'
74
+ Enabled: true
75
+
76
+ Style/CharacterLiteral:
77
+ Description: 'Checks for uses of character literals.'
78
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
79
+ Enabled: true
80
+
81
+ Style/ClassAndModuleChildren:
82
+ Description: 'Checks style of children classes and modules.'
83
+ Enabled: true
84
+
85
+ Style/ClassCheck:
86
+ Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
87
+ Enabled: true
88
+
89
+ Style/ClassMethods:
90
+ Description: 'Use self when defining module/class methods.'
91
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#def-self-singletons'
92
+ Enabled: true
93
+
94
+ Style/ColonMethodCall:
95
+ Description: 'Do not use :: for method call.'
96
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
97
+ Enabled: true
98
+
99
+ Style/CommentAnnotation:
100
+ Description: >-
101
+ Checks formatting of special comments
102
+ (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
103
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
104
+ Enabled: true
105
+
106
+ Style/CommentIndentation:
107
+ Description: 'Indentation of comments.'
108
+ Enabled: true
109
+
110
+ Style/ConstantName:
111
+ Description: 'Constants should use SCREAMING_SNAKE_CASE.'
112
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#screaming-snake-case'
113
+ Enabled: true
114
+
115
+ Style/DefWithParentheses:
116
+ Description: 'Use def with parentheses when there are arguments.'
117
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
118
+ Enabled: true
119
+
120
+ Style/DeprecatedHashMethods:
121
+ Description: 'Checks for use of deprecated Hash methods.'
122
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-key'
123
+ Enabled: true
124
+
125
+ Style/DotPosition:
126
+ Description: 'Checks the position of the dot in multi-line method calls.'
127
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
128
+ Enabled: true
129
+
130
+ Style/ElseAlignment:
131
+ Description: 'Align elses and elsifs correctly.'
132
+ Enabled: true
133
+
134
+ Style/EmptyLineBetweenDefs:
135
+ Description: 'Use empty lines between defs.'
136
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#empty-lines-between-methods'
137
+ Enabled: true
138
+
139
+ Style/EmptyLines:
140
+ Description: "Don't use several empty lines in a row."
141
+ Enabled: true
142
+
143
+ Style/EmptyLinesAroundAccessModifier:
144
+ Description: "Keep blank lines around access modifiers."
145
+ Enabled: true
146
+
147
+ #Style/EmptyLinesAroundBlockBody:
148
+ # Description: "Keeps track of empty lines around block bodies."
149
+ # Enabled: true
150
+
151
+ Style/EmptyLinesAroundClassBody:
152
+ Description: "Keeps track of empty lines around class bodies."
153
+ Enabled: true
154
+
155
+ Style/EmptyLinesAroundModuleBody:
156
+ Description: "Keeps track of empty lines around module bodies."
157
+ Enabled: true
158
+
159
+ Style/EmptyLinesAroundMethodBody:
160
+ Description: "Keeps track of empty lines around method bodies."
161
+ Enabled: true
162
+
163
+ Style/EmptyLiteral:
164
+ Description: 'Prefer literals to Array.new/Hash.new/String.new.'
165
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
166
+ Enabled: true
167
+
168
+ Style/EndBlock:
169
+ Description: 'Avoid the use of END blocks.'
170
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-END-blocks'
171
+ Enabled: true
172
+
173
+ Style/EvenOdd:
174
+ Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
175
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
176
+ Enabled: true
177
+
178
+ Style/FileName:
179
+ Description: 'Use snake_case for source file names.'
180
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
181
+ Enabled: true
182
+
183
+ Style/FlipFlop:
184
+ Description: 'Checks for flip flops'
185
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
186
+ Enabled: true
187
+
188
+ Style/For:
189
+ Description: 'Checks use of for or each in multiline loops.'
190
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-for-loops'
191
+ Enabled: true
192
+
193
+ Style/HashSyntax:
194
+ Description: >-
195
+ Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
196
+ { :a => 1, :b => 2 }.
197
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-literals'
198
+ Enabled: true
199
+
200
+ Style/IfWithSemicolon:
201
+ Description: 'Do not use if x; .... Use the ternary operator instead.'
202
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
203
+ Enabled: true
204
+
205
+ Style/IndentationConsistency:
206
+ Description: 'Keep indentation straight.'
207
+ Enabled: true
208
+
209
+ Style/IndentationWidth:
210
+ Description: 'Use 2 spaces for indentation.'
211
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
212
+ Enabled: true
213
+
214
+ Style/IndentArray:
215
+ Description: >-
216
+ Checks the indentation of the first element in an array
217
+ literal.
218
+ Enabled: true
219
+
220
+ Style/IndentHash:
221
+ Description: 'Checks the indentation of the first key in a hash literal.'
222
+ Enabled: true
223
+
224
+ Style/InfiniteLoop:
225
+ Description: 'Use Kernel#loop for infinite loops.'
226
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#infinite-loop'
227
+ Enabled: true
228
+
229
+ Style/LambdaCall:
230
+ Description: 'Use lambda.call(...) instead of lambda.(...).'
231
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
232
+ Enabled: true
233
+
234
+ Style/LeadingCommentSpace:
235
+ Description: 'Comments should start with a space.'
236
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-space'
237
+ Enabled: true
238
+
239
+ Style/LineEndConcatenation:
240
+ Description: >-
241
+ Use \ instead of + or << to concatenate two string literals at
242
+ line end.
243
+ Enabled: true
244
+
245
+ Style/MethodCallParentheses:
246
+ Description: 'Do not use parentheses for method calls with no arguments.'
247
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-args-no-parens'
248
+ Enabled: true
249
+
250
+ Style/MethodDefParentheses:
251
+ Description: >-
252
+ Checks if the method definitions have or don't have
253
+ parentheses.
254
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
255
+ Enabled: true
256
+
257
+ Style/MethodName:
258
+ Description: 'Use the configured style when naming methods.'
259
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
260
+ Enabled: true
261
+
262
+ Style/ModuleFunction:
263
+ Description: 'Checks for usage of `extend self` in modules.'
264
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
265
+ Enabled: true
266
+
267
+ Style/MultilineBlockLayout:
268
+ Description: 'Ensures newlines after multiline block do statements.'
269
+ Enabled: true
270
+
271
+ Style/MultilineIfThen:
272
+ Description: 'Do not use then for multi-line if/unless.'
273
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-then'
274
+ Enabled: true
275
+
276
+ Style/MultilineOperationIndentation:
277
+ Description: >-
278
+ Checks indentation of binary operations that span more than
279
+ one line.
280
+ Enabled: true
281
+
282
+ Style/MultilineTernaryOperator:
283
+ Description: >-
284
+ Avoid multi-line ?: (the ternary operator);
285
+ use if/unless instead.
286
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-ternary'
287
+ Enabled: true
288
+
289
+ Style/NegatedIf:
290
+ Description: >-
291
+ Favor unless over if for negative conditions
292
+ (or control flow or).
293
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
294
+ Enabled: true
295
+
296
+ Style/NegatedWhile:
297
+ Description: 'Favor until over while for negative conditions.'
298
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
299
+ Enabled: true
300
+
301
+ Style/NestedTernaryOperator:
302
+ Description: 'Use one expression per branch in a ternary operator.'
303
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-ternary'
304
+ Enabled: true
305
+
306
+ Style/NilComparison:
307
+ Description: 'Prefer x.nil? to x == nil.'
308
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
309
+ Enabled: true
310
+
311
+ Style/NonNilCheck:
312
+ Description: 'Checks for redundant nil checks.'
313
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-non-nil-checks'
314
+ Enabled: true
315
+
316
+ Style/Not:
317
+ Description: 'Use ! instead of not.'
318
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
319
+ Enabled: true
320
+
321
+ Style/NumericLiterals:
322
+ Description: >-
323
+ Add underscores to large numeric literals to improve their
324
+ readability.
325
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
326
+ Enabled: true
327
+
328
+ Style/OneLineConditional:
329
+ Description: >-
330
+ Favor the ternary operator(?:) over
331
+ if/then/else/end constructs.
332
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
333
+ Enabled: true
334
+
335
+ Style/ParenthesesAroundCondition:
336
+ Description: >-
337
+ Don't use parentheses around the condition of an
338
+ if/unless/while.
339
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-parens-if'
340
+ Enabled: true
341
+
342
+ Style/PercentLiteralDelimiters:
343
+ Description: 'Use `%`-literal delimiters consistently'
344
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
345
+ Enabled: true
346
+
347
+ Style/PercentQLiterals:
348
+ Description: 'Checks if uses of %Q/%q match the configured preference.'
349
+ Enabled: true
350
+
351
+ Style/PerlBackrefs:
352
+ Description: 'Avoid Perl-style regex back references.'
353
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
354
+ Enabled: true
355
+
356
+ Style/Proc:
357
+ Description: 'Use proc instead of Proc.new.'
358
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
359
+ Enabled: true
360
+
361
+ Style/RaiseArgs:
362
+ Description: 'Checks the arguments passed to raise/fail.'
363
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
364
+ Enabled: true
365
+
366
+ Style/RedundantBegin:
367
+ Description: "Don't use begin blocks when they are not needed."
368
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#begin-implicit'
369
+ Enabled: true
370
+
371
+ Style/RedundantException:
372
+ Description: "Checks for an obsolete RuntimeException argument in raise/fail."
373
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-runtimeerror'
374
+ Enabled: true
375
+
376
+ Style/RedundantReturn:
377
+ Description: "Don't use return where it's not required."
378
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-return'
379
+ Enabled: true
380
+
381
+ Style/RedundantSelf:
382
+ Description: "Don't use self where it's not needed."
383
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-self-unless-required'
384
+ Enabled: true
385
+
386
+ Style/RescueModifier:
387
+ Description: 'Avoid using rescue in its modifier form.'
388
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-rescue-modifiers'
389
+ Enabled: true
390
+
391
+ Style/SignalException:
392
+ Description: 'Checks for proper usage of fail and raise.'
393
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
394
+ Enabled: true
395
+
396
+ Style/SingleLineMethods:
397
+ Description: 'Avoid single-line methods.'
398
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
399
+ Enabled: true
400
+
401
+ Style/SingleSpaceBeforeFirstArg:
402
+ Description: >-
403
+ Checks that exactly one space is used between a method name
404
+ and the first argument for method calls without parentheses.
405
+ Enabled: true
406
+
407
+ Style/SpaceAfterColon:
408
+ Description: 'Use spaces after colons.'
409
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
410
+ Enabled: true
411
+
412
+ Style/SpaceAfterComma:
413
+ Description: 'Use spaces after commas.'
414
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
415
+ Enabled: true
416
+
417
+ Style/SpaceAfterControlKeyword:
418
+ Description: 'Use spaces after if/elsif/unless/while/until/case/when.'
419
+ Enabled: true
420
+
421
+ Style/SpaceAfterMethodName:
422
+ Description: >-
423
+ Do not put a space between a method name and the opening
424
+ parenthesis in a method definition.
425
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
426
+ Enabled: true
427
+
428
+ Style/SpaceAfterNot:
429
+ Description: Tracks redundant space after the ! operator.
430
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-bang'
431
+ Enabled: true
432
+
433
+ Style/SpaceAfterSemicolon:
434
+ Description: 'Use spaces after semicolons.'
435
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
436
+ Enabled: true
437
+
438
+ Style/SpaceBeforeBlockBraces:
439
+ Description: >-
440
+ Checks that the left block brace has or doesn't have space
441
+ before it.
442
+ Enabled: true
443
+
444
+ Style/SpaceBeforeComma:
445
+ Description: 'No spaces before commas.'
446
+ Enabled: true
447
+
448
+ Style/SpaceBeforeComment:
449
+ Description: >-
450
+ Checks for missing space between code and a comment on the
451
+ same line.
452
+ Enabled: true
453
+
454
+ Style/SpaceBeforeSemicolon:
455
+ Description: 'No spaces before semicolons.'
456
+ Enabled: true
457
+
458
+ Style/SpaceInsideBlockBraces:
459
+ Description: >-
460
+ Checks that block braces have or don't have surrounding space.
461
+ For blocks taking parameters, checks that the left brace has
462
+ or doesn't have trailing space.
463
+ Enabled: true
464
+
465
+ Style/SpaceAroundEqualsInParameterDefault:
466
+ Description: >-
467
+ Checks that the equals signs in parameter default assignments
468
+ have or don't have surrounding space depending on
469
+ configuration.
470
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-around-equals'
471
+ Enabled: true
472
+
473
+ Style/SpaceAroundOperators:
474
+ Description: 'Use spaces around operators.'
475
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
476
+ Enabled: true
477
+
478
+ Style/SpaceBeforeModifierKeyword:
479
+ Description: 'Put a space before the modifier keyword.'
480
+ Enabled: true
481
+
482
+ Style/SpaceInsideBrackets:
483
+ Description: 'No spaces after [ or before ].'
484
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
485
+ Enabled: true
486
+
487
+ Style/SpaceInsideHashLiteralBraces:
488
+ Description: "Use spaces inside hash literal braces - or don't."
489
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
490
+ Enabled: true
491
+
492
+ Style/SpaceInsideParens:
493
+ Description: 'No spaces after ( or before ).'
494
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
495
+ Enabled: true
496
+
497
+ Style/SpaceInsideRangeLiteral:
498
+ Description: 'No spaces inside range literals.'
499
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-inside-range-literals'
500
+ Enabled: true
501
+
502
+ Style/SpecialGlobalVars:
503
+ Description: 'Avoid Perl-style global variables.'
504
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
505
+ Enabled: true
506
+
507
+ Style/StringLiterals:
508
+ Description: 'Checks if uses of quotes match the configured preference.'
509
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
510
+ Enabled: true
511
+
512
+ Style/StringLiteralsInInterpolation:
513
+ Description: >-
514
+ Checks if uses of quotes inside expressions in interpolated
515
+ strings match the configured preference.
516
+ Enabled: true
517
+
518
+ Style/SymbolProc:
519
+ Description: 'Use symbols as procs instead of blocks when possible.'
520
+ Enabled: true
521
+
522
+ Style/Tab:
523
+ Description: 'No hard tabs.'
524
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
525
+ Enabled: true
526
+
527
+ Style/TrailingBlankLines:
528
+ Description: 'Checks trailing blank lines and final newline.'
529
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#newline-eof'
530
+ Enabled: true
531
+
532
+ Style/TrailingComma:
533
+ Description: 'Checks for trailing comma in parameter lists and literals.'
534
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
535
+ Enabled: true
536
+
537
+ Style/TrailingWhitespace:
538
+ Description: 'Avoid trailing whitespace.'
539
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-whitespace'
540
+ Enabled: true
541
+
542
+ Style/UnlessElse:
543
+ Description: >-
544
+ Do not use unless with else. Rewrite these with the positive
545
+ case first.
546
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-else-with-unless'
547
+ Enabled: true
548
+
549
+ Style/UnneededCapitalW:
550
+ Description: 'Checks for %W when interpolation is not needed.'
551
+ Enabled: true
552
+
553
+ Style/UnneededPercentQ:
554
+ Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
555
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q'
556
+ Enabled: true
557
+
558
+ Style/VariableInterpolation:
559
+ Description: >-
560
+ Don't interpolate global, instance and class variables
561
+ directly in strings.
562
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
563
+ Enabled: true
564
+
565
+ Style/VariableName:
566
+ Description: 'Use the configured style when naming variables.'
567
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
568
+ Enabled: true
569
+
570
+ Style/WhenThen:
571
+ Description: 'Use when x then ... for one-line cases.'
572
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
573
+ Enabled: true
574
+
575
+ Style/WhileUntilDo:
576
+ Description: 'Checks for redundant do after while or until.'
577
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-while-do'
578
+ Enabled: true
579
+
580
+ Style/WhileUntilModifier:
581
+ Description: >-
582
+ Favor modifier while/until usage when you have a
583
+ single-line body.
584
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
585
+ Enabled: true
586
+
587
+ Style/WordArray:
588
+ Description: 'Use %w or %W for arrays of words.'
589
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
590
+ Enabled: true
591
+
592
+ #################### Metrics ################################
593
+
594
+ Metrics/ParameterLists:
595
+ Description: 'Avoid parameter lists longer than three or four parameters.'
596
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
597
+ Enabled: true
598
+
599
+ #################### Lint ################################
600
+ ### Warnings
601
+
602
+ Lint/AmbiguousOperator:
603
+ Description: >-
604
+ Checks for ambiguous operators in the first argument of a
605
+ method invocation without parentheses.
606
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
607
+ Enabled: true
608
+
609
+ Lint/AmbiguousRegexpLiteral:
610
+ Description: >-
611
+ Checks for ambiguous regexp literals in the first argument of
612
+ a method invocation without parenthesis.
613
+ Enabled: true
614
+
615
+ Lint/BlockAlignment:
616
+ Description: 'Align block ends correctly.'
617
+ Enabled: true
618
+
619
+ Lint/ConditionPosition:
620
+ Description: >-
621
+ Checks for condition placed in a confusing position relative to
622
+ the keyword.
623
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
624
+ Enabled: true
625
+
626
+ Lint/Debugger:
627
+ Description: 'Check for debugger calls.'
628
+ Enabled: true
629
+
630
+ Lint/DefEndAlignment:
631
+ Description: 'Align ends corresponding to defs correctly.'
632
+ Enabled: true
633
+
634
+ Lint/DeprecatedClassMethods:
635
+ Description: 'Check for deprecated class method calls.'
636
+ Enabled: true
637
+
638
+ Lint/ElseLayout:
639
+ Description: 'Check for odd code arrangement in an else block.'
640
+ Enabled: true
641
+
642
+ Lint/EmptyEnsure:
643
+ Description: 'Checks for empty ensure block.'
644
+ Enabled: true
645
+
646
+ Lint/EmptyInterpolation:
647
+ Description: 'Checks for empty string interpolation.'
648
+ Enabled: true
649
+
650
+ Lint/EndInMethod:
651
+ Description: 'END blocks should not be placed inside method definitions.'
652
+ Enabled: true
653
+
654
+ Lint/EnsureReturn:
655
+ Description: 'Do not use return in an ensure block.'
656
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-return-ensure'
657
+ Enabled: true
658
+
659
+ Lint/InvalidCharacterLiteral:
660
+ Description: >-
661
+ Checks for invalid character literals with a non-escaped
662
+ whitespace character.
663
+ Enabled: true
664
+
665
+ Lint/LiteralInCondition:
666
+ Description: 'Checks of literals used in conditions.'
667
+ Enabled: true
668
+
669
+ Lint/LiteralInInterpolation:
670
+ Description: 'Checks for literals used in interpolation.'
671
+ Enabled: true
672
+
673
+ Lint/Loop:
674
+ Description: >-
675
+ Use Kernel#loop with break rather than begin/end/until or
676
+ begin/end/while for post-loop tests.
677
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
678
+ Enabled: true
679
+
680
+ Lint/ParenthesesAsGroupedExpression:
681
+ Description: >-
682
+ Checks for method calls with a space before the opening
683
+ parenthesis.
684
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
685
+ Enabled: true
686
+
687
+ Lint/RequireParentheses:
688
+ Description: >-
689
+ Use parentheses in the method call to avoid confusion
690
+ about precedence.
691
+ Enabled: true
692
+
693
+ Lint/SpaceBeforeFirstArg:
694
+ Description: >-
695
+ Put a space between a method name and the first argument
696
+ in a method call without parentheses.
697
+ Enabled: true
698
+
699
+ Lint/StringConversionInInterpolation:
700
+ Description: 'Checks for Object#to_s usage in string interpolation.'
701
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-to-s'
702
+ Enabled: true
703
+
704
+ Lint/UnreachableCode:
705
+ Description: 'Unreachable code.'
706
+ Enabled: true
707
+
708
+ Lint/UselessAccessModifier:
709
+ Description: 'Checks for useless access modifiers.'
710
+ Enabled: true
711
+
712
+ Lint/UselessAssignment:
713
+ Description: 'Checks for useless assignment to a local variable.'
714
+ StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars'
715
+ Enabled: true
716
+
717
+ Lint/UselessComparison:
718
+ Description: 'Checks for comparison of something with itself.'
719
+ Enabled: true
720
+
721
+ Lint/UselessElseWithoutRescue:
722
+ Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
723
+ Enabled: true
724
+
725
+ Lint/UselessSetterCall:
726
+ Description: 'Checks for useless setter call to a local variable.'
727
+ Enabled: true
728
+
729
+ Lint/Void:
730
+ Description: 'Possible use of operator/literal/variable in void context.'
731
+ Enabled: true