cuke_linter 1.3.0 → 1.4.0

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 (75) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +217 -211
  3. data/LICENSE.txt +21 -21
  4. data/README.md +160 -160
  5. data/cuke_linter.gemspec +59 -58
  6. data/exe/cuke_linter +112 -112
  7. data/lib/cuke_linter/configuration.rb +45 -45
  8. data/lib/cuke_linter/default_linters.rb +32 -32
  9. data/lib/cuke_linter/formatters/pretty_formatter.rb +84 -84
  10. data/lib/cuke_linter/gherkin.rb +10 -10
  11. data/lib/cuke_linter/linter_registration.rb +32 -32
  12. data/lib/cuke_linter/linters/background_does_more_than_setup_linter.rb +35 -35
  13. data/lib/cuke_linter/linters/element_with_common_tags_linter.rb +49 -49
  14. data/lib/cuke_linter/linters/element_with_duplicate_tags_linter.rb +48 -48
  15. data/lib/cuke_linter/linters/element_with_too_many_tags_linter.rb +46 -46
  16. data/lib/cuke_linter/linters/example_without_name_linter.rb +19 -19
  17. data/lib/cuke_linter/linters/feature_file_with_invalid_name_linter.rb +20 -20
  18. data/lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb +25 -25
  19. data/lib/cuke_linter/linters/feature_with_too_many_different_tags_linter.rb +35 -35
  20. data/lib/cuke_linter/linters/feature_without_description_linter.rb +19 -19
  21. data/lib/cuke_linter/linters/feature_without_name_linter.rb +19 -19
  22. data/lib/cuke_linter/linters/feature_without_scenarios_linter.rb +23 -23
  23. data/lib/cuke_linter/linters/linter.rb +42 -42
  24. data/lib/cuke_linter/linters/outline_with_single_example_row_linter.rb +22 -22
  25. data/lib/cuke_linter/linters/single_test_background_linter.rb +19 -19
  26. data/lib/cuke_linter/linters/step_with_end_period_linter.rb +19 -19
  27. data/lib/cuke_linter/linters/step_with_too_many_characters_linter.rb +38 -38
  28. data/lib/cuke_linter/linters/test_name_with_too_many_characters_linter.rb +38 -38
  29. data/lib/cuke_linter/linters/test_should_use_background_linter.rb +80 -80
  30. data/lib/cuke_linter/linters/test_with_action_step_as_final_step_linter.rb +33 -33
  31. data/lib/cuke_linter/linters/test_with_bad_name_linter.rb +23 -23
  32. data/lib/cuke_linter/linters/test_with_no_action_step_linter.rb +33 -33
  33. data/lib/cuke_linter/linters/test_with_no_name_linter.rb +19 -19
  34. data/lib/cuke_linter/linters/test_with_no_verification_step_linter.rb +33 -33
  35. data/lib/cuke_linter/linters/test_with_setup_step_after_action_step_linter.rb +46 -46
  36. data/lib/cuke_linter/linters/test_with_setup_step_after_verification_step_linter.rb +46 -46
  37. data/lib/cuke_linter/linters/test_with_setup_step_as_final_step_linter.rb +33 -33
  38. data/lib/cuke_linter/linters/test_with_too_many_steps_linter.rb +27 -27
  39. data/lib/cuke_linter/version.rb +4 -4
  40. data/lib/cuke_linter.rb +196 -196
  41. data/testing/cucumber/features/command_line.feature +202 -202
  42. data/testing/cucumber/features/configuration/configuring_linters.feature +58 -58
  43. data/testing/cucumber/features/configuration/locally_scoping_linters.feature +55 -55
  44. data/testing/cucumber/features/configuration/using_configurations.feature +41 -41
  45. data/testing/cucumber/features/custom_linters.feature +56 -56
  46. data/testing/cucumber/features/default_linters.feature +57 -57
  47. data/testing/cucumber/features/formatters/pretty_formatter.feature +26 -26
  48. data/testing/cucumber/features/linters/background_does_more_than_setup.feature +84 -84
  49. data/testing/cucumber/features/linters/element_with_common_tags.feature +28 -28
  50. data/testing/cucumber/features/linters/element_with_duplicate_tags.feature +71 -71
  51. data/testing/cucumber/features/linters/element_with_too_many_tags.feature +70 -70
  52. data/testing/cucumber/features/linters/example_without_name.feature +34 -34
  53. data/testing/cucumber/features/linters/feature_file_with_invalid_name.feature +20 -20
  54. data/testing/cucumber/features/linters/feature_file_with_mismatched_name.feature +32 -32
  55. data/testing/cucumber/features/linters/feature_with_too_many_different_tags.feature +56 -56
  56. data/testing/cucumber/features/linters/feature_without_description.feature +17 -17
  57. data/testing/cucumber/features/linters/feature_without_name.feature +18 -18
  58. data/testing/cucumber/features/linters/feature_without_scenarios.feature +39 -39
  59. data/testing/cucumber/features/linters/outline_with_single_example_row.feature +23 -23
  60. data/testing/cucumber/features/linters/single_test_background.feature +24 -24
  61. data/testing/cucumber/features/linters/step_too_long.feature +43 -43
  62. data/testing/cucumber/features/linters/step_with_end_period.feature +21 -21
  63. data/testing/cucumber/features/linters/test_name_too_long.feature +41 -41
  64. data/testing/cucumber/features/linters/test_should_use_background.feature +29 -29
  65. data/testing/cucumber/features/linters/test_with_action_as_final_step.feature +50 -50
  66. data/testing/cucumber/features/linters/test_with_bad_name.feature +29 -29
  67. data/testing/cucumber/features/linters/test_with_no_action_step.feature +56 -56
  68. data/testing/cucumber/features/linters/test_with_no_name.feature +23 -23
  69. data/testing/cucumber/features/linters/test_with_no_verification_step.feature +58 -58
  70. data/testing/cucumber/features/linters/test_with_setup_step_after_action_step.feature +57 -57
  71. data/testing/cucumber/features/linters/test_with_setup_step_after_verification_step.feature +57 -57
  72. data/testing/cucumber/features/linters/test_with_setup_step_as_final_step.feature +50 -50
  73. data/testing/cucumber/features/linters/test_with_too_many_steps.feature +61 -61
  74. metadata +21 -25
  75. data/testing/cucumber/features/linters/rule_without_name.feature +0 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c131f0cd2c39b7ca961f791d36057e5bb502a58642b81a87f0e5ced67fca7e30
4
- data.tar.gz: 131411ade0634a8a03813996cab553303f78d28208d015302089400af07bb6e5
3
+ metadata.gz: 81278d1cb23a92d60a037f740e334f3f51ebe4e57a298827613b920b3eef325f
4
+ data.tar.gz: acdd8537f7f2d2d93e10faf9837ce583f98e18b12831ba99e837656a228de2f0
5
5
  SHA512:
6
- metadata.gz: 8d6ed6d47f19beefe74c57865171d6cfc0ccf8770ef648dd7103ff4c4fc183a621dc24fc53cb6d3ab9b6adb1e713b6f871d1c782d2514f1c301dc5590b9d8bb8
7
- data.tar.gz: 1b8d2841790e2f48351f01ae3af0c230256ec3b2a020317469b46bd1f7279d055963f6c050f1889e08482f592af9f4fa853b1f82e10eb4fe81254fa8c2faecde
6
+ metadata.gz: 4151e021a06aef1c73ce3ae4f91d2b4d732c7205031d008f4a94eb341180514bcd0c9537ceb41ea39f340fa0e6441c9622f089b585bef03a2789e23a75b4ce7e
7
+ data.tar.gz: 50add9101d3e4a9eb28776381544b448a757c0c7a82ea6fc997bafbf4499bb1b5dfa9bd4f2d888329af01b8c24950f1983820adfbdf63696db1ed9cfb91043f0
data/CHANGELOG.md CHANGED
@@ -1,211 +1,217 @@
1
- # Changelog
2
- All notable changes to this project will be documented in this file.
3
-
4
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
-
7
- ## [Unreleased]
8
-
9
- Nothing yet...
10
-
11
- ## [1.3.0] - 2022-05-23
12
-
13
- ### Added
14
- - New linters
15
- - TestNameWithTooManyCharactersLinter
16
-
17
- - Linters that are impacted by `Rule` elements in Gherkin have been updated, now that Rules models are available
18
- in CukeModeler
19
- - FeatureWithoutScenariosLinter
20
-
21
- ## [1.2.1] - 2021-06-13
22
-
23
- ### Fixed
24
- - Updated the minimum required Ruby version to `2.1`. The gem has never had `2.0` compatible code (due to using
25
- named parameters without default values), so it's easier to just officially drop `2.0` 'support' than to change
26
- the API to enable a use case that was never used anyway.
27
-
28
- ## [1.2.0] - 2021-01-08
29
-
30
- ### Added
31
- - Ruby 3.x is now supported
32
-
33
- ## [1.1.0] - 2020-06-14
34
-
35
- ### Added
36
- - Now compatible with CukeModeler 3.x
37
-
38
- ## [1.0.1] - 2020-05-06
39
-
40
- ### Fixed
41
- - Replaced some code that was not valid with earlier versions of Ruby 2.x, with which this gem is specified as being compatible.
42
-
43
-
44
- ## [1.0.0] - 2020-03-09
45
-
46
- ### Changed
47
- - No longer including every file in the Git repository as part of the gem. Only the files needed for using the linter (and the informative ones like the README) will be packaged into the released gem.
48
-
49
-
50
- ## [0.13.0] - 2020-03-01
51
-
52
- ### Added
53
- - Added the ability to configure relevant keywords for linters whose behavior is impacted by the dialect in which feature files are written.
54
- - BackgroundDoesMoreThanSetupLinter
55
- - TestWithActionStepAsFinalStepLinter
56
- - TestWithNoActionStepLinter
57
- - TestWithNoVerificationStepLinter
58
- - TestWithSetupStepAfterActionStepLinter
59
- - TestWithSetupStepAfterVerificationStepLinter
60
- - TestWithSetupStepAsFinalStepLinter
61
-
62
-
63
- ## [0.12.1] - 2020-02-15
64
-
65
- ### Fixed
66
- - `TestShouldUseBackgroundLinter` no longer suggests moving steps to the background if they have an outline parameter.
67
-
68
- ## [0.12.0] - 2020-02-13
69
-
70
- ### Added
71
- - New linters
72
- - ElementWithCommonTagsLinter
73
- - ElementWithDuplicateTagsLinter
74
- - FeatureFileWithMismatchedNameLinter
75
-
76
- - Now compatible with CukeModeler 2.x
77
-
78
-
79
- ## [0.11.1] - 2019-11-07
80
-
81
- ### Fixed
82
- - Fixed the Pretty formatter so that it can handle linting problems whose locations do not have a line number.
83
-
84
-
85
- ## [0.11.0] - 2019-11-01
86
-
87
- ### Added
88
- - New linters
89
- - FeatureFileWithInvalidNameLinter
90
- - TestWithBadNameLinter
91
-
92
-
93
- ## [0.10.0] - 2019-10-04
94
-
95
- ### Added
96
- - New linters
97
- - FeatureWithTooManyDifferentTagsLinter
98
- - TestShouldUseBackgroundLinter
99
- - TestWithActionStepAsFinalStepLinter
100
- - TestWithSetupStepAfterActionStepLinter
101
- - TestWithSetupStepAfterVerificationStepLinter
102
- - TestWithSetupStepAsFinalStepLinter
103
-
104
- ### Changed
105
- - Improved some of the documentation and linting messages so that it is more clear what the problem is.
106
-
107
- ## [0.9.0] - 2019-09-11
108
-
109
- ### Added
110
- - Linters can now be temporarily enabled/disabled within arbitrary portions of a feature file, in order to allow for exceptions to the otherwise blanket set of linting rules.
111
-
112
- ## [0.8.0] - 2019-09-07
113
-
114
- ### Changed
115
- - The exit codes used by the CLI have been changed in order to better facilitate taking additional actions based on them.
116
- - 0 - No linting problems found
117
- - 1 - Linting problems found
118
- - 2 - Some other problem (e.g. incorrect CLI usage)
119
-
120
- ## [0.7.0] - 2019-07-12
121
-
122
- ### Added
123
- - Linters can now be configured en masse instead of having to configure the same property for all of them individually.
124
-
125
- - New linters
126
- - ElementWithTooManyTagsLinter
127
- - FeatureWithoutNameLinter
128
- - TestWithNoActionStepLinter
129
- - TestWithNoNameLinter
130
- - TestWithNoVerificationStepLinter
131
-
132
- ## [0.6.0] - 2019-06-25
133
-
134
- ### Added
135
- - File paths can now be provided for linting without the user first having to turn them into models themselves.
136
- - Option flags have been added to the command line interface. This will allow more flexibility when running from the command line and thereby reduce the need for writing a Ruby script for even basic usages of the gem.
137
-
138
- ### Changed
139
- - Linting is now done using a collection of model trees instead of taking only a single model tree.
140
-
141
- ### Fixed
142
- - Fixed a bug in the 'pretty' formatter that was causing problems to be ordered by line number instead of being ordered by file (and then by line number within those files).
143
- - Added a missing `require` statement that is needed if no other code in the runtime environment has loaded the needed library already.
144
- - Fixed a bug where enabling/disabling a linter would trigger additional configuration of the linter, even for linters that could not be configured.
145
-
146
- ## [0.5.0] - 2019-05-25
147
-
148
- ### Added
149
- - New linters
150
- - BackgroundDoesMoreThanSetupLinter
151
- - FeatureWithoutDescriptionLinter
152
- - SingleTestBackgroundLinter
153
- - StepWithEndPeriodLinter
154
- - StepWithTooManyCharactersLinter
155
-
156
- ## [0.4.0] - 2019-05-11
157
-
158
- ### Added
159
- - A base linter class has been added that can be used to create custom linters more easily by providing common boilerplate code that every linter would need.
160
-
161
- ### Changed
162
- - Linters now return only a single problem instead of returning a collection of problems.
163
-
164
- ## [0.3.1] - 2019-04-13
165
-
166
- ### Added
167
- - Now declaring required Ruby version. It's always been 2.x but now the gem actually says it officially.
168
-
169
- ## [0.3.0] - 2019-04-07
170
-
171
- ### Added
172
- - Linter configuration: linters can now be configured (turned on/off, conditions changed, etc.) instead of having to always use the default settings
173
-
174
- ## [0.2.0] - 2019-03-19
175
-
176
- ### Added
177
- - New linters
178
- - ExampleWithoutNameLinter
179
- - OutlineWithSingleExampleRowLinter
180
- - TestWithTooManyStepsLinter
181
-
182
-
183
- ## [0.1.0] - 2019-02-10
184
-
185
- ### Added
186
- - Custom linters, formatters, and command line usability
187
-
188
-
189
- [Unreleased]: https://github.com/enkessler/cuke_linter/compare/v1.3.0...HEAD
190
- [1.3.0]: https://github.com/enkessler/cuke_linter/compare/v1.2.1...v1.3.0
191
- [1.2.1]: https://github.com/enkessler/cuke_linter/compare/v1.2.0...v1.2.1
192
- [1.2.0]: https://github.com/enkessler/cuke_linter/compare/v1.1.0...v1.2.0
193
- [1.1.0]: https://github.com/enkessler/cuke_linter/compare/v1.0.1...v1.1.0
194
- [1.0.1]: https://github.com/enkessler/cuke_linter/compare/v1.0.0...v1.0.1
195
- [1.0.0]: https://github.com/enkessler/cuke_linter/compare/v0.13.0...v1.0.0
196
- [0.13.0]: https://github.com/enkessler/cuke_linter/compare/v0.12.1...v0.13.0
197
- [0.12.1]: https://github.com/enkessler/cuke_linter/compare/v0.12.0...v0.12.1
198
- [0.12.0]: https://github.com/enkessler/cuke_linter/compare/v0.11.1...v0.12.0
199
- [0.11.1]: https://github.com/enkessler/cuke_linter/compare/v0.11.0...v0.11.1
200
- [0.11.0]: https://github.com/enkessler/cuke_linter/compare/v0.10.0...v0.11.0
201
- [0.10.0]: https://github.com/enkessler/cuke_linter/compare/v0.9.0...v0.10.0
202
- [0.9.0]: https://github.com/enkessler/cuke_linter/compare/v0.8.0...v0.9.0
203
- [0.8.0]: https://github.com/enkessler/cuke_linter/compare/v0.7.0...v0.8.0
204
- [0.7.0]: https://github.com/enkessler/cuke_linter/compare/v0.6.0...v0.7.0
205
- [0.6.0]: https://github.com/enkessler/cuke_linter/compare/v0.5.0...v0.6.0
206
- [0.5.0]: https://github.com/enkessler/cuke_linter/compare/v0.4.0...v0.5.0
207
- [0.4.0]: https://github.com/enkessler/cuke_linter/compare/v0.3.1...v0.4.0
208
- [0.3.1]: https://github.com/enkessler/cuke_linter/compare/v0.3.0...v0.3.1
209
- [0.3.0]: https://github.com/enkessler/cuke_linter/compare/v0.2.0...v0.3.0
210
- [0.2.0]: https://github.com/enkessler/cuke_linter/compare/v0.1.0...v0.2.0
211
- [0.1.0]: https://github.com/enkessler/cuke_linter/compare/2bbd3f29f4eb45b6e9ea7d47c5bb47182bf4fde7...v0.1.0
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ Nothing yet...
10
+
11
+ ## [1.4.0] - 2026-01-18
12
+
13
+ ### Added
14
+ - Ruby 4.x is now supported
15
+
16
+ ## [1.3.0] - 2022-05-23
17
+
18
+ ### Added
19
+ - New linters
20
+ - TestNameWithTooManyCharactersLinter
21
+
22
+ - Linters that are impacted by `Rule` elements in Gherkin have been updated, now that Rules models are available
23
+ in CukeModeler
24
+ - FeatureWithoutScenariosLinter
25
+
26
+ ## [1.2.1] - 2021-06-13
27
+
28
+ ### Fixed
29
+ - Updated the minimum required Ruby version to `2.1`. The gem has never had `2.0` compatible code (due to using
30
+ named parameters without default values), so it's easier to just officially drop `2.0` 'support' than to change
31
+ the API to enable a use case that was never used anyway.
32
+
33
+ ## [1.2.0] - 2021-01-08
34
+
35
+ ### Added
36
+ - Ruby 3.x is now supported
37
+
38
+ ## [1.1.0] - 2020-06-14
39
+
40
+ ### Added
41
+ - Now compatible with CukeModeler 3.x
42
+
43
+ ## [1.0.1] - 2020-05-06
44
+
45
+ ### Fixed
46
+ - Replaced some code that was not valid with earlier versions of Ruby 2.x, with which this gem is specified as being compatible.
47
+
48
+
49
+ ## [1.0.0] - 2020-03-09
50
+
51
+ ### Changed
52
+ - No longer including every file in the Git repository as part of the gem. Only the files needed for using the linter (and the informative ones like the README) will be packaged into the released gem.
53
+
54
+
55
+ ## [0.13.0] - 2020-03-01
56
+
57
+ ### Added
58
+ - Added the ability to configure relevant keywords for linters whose behavior is impacted by the dialect in which feature files are written.
59
+ - BackgroundDoesMoreThanSetupLinter
60
+ - TestWithActionStepAsFinalStepLinter
61
+ - TestWithNoActionStepLinter
62
+ - TestWithNoVerificationStepLinter
63
+ - TestWithSetupStepAfterActionStepLinter
64
+ - TestWithSetupStepAfterVerificationStepLinter
65
+ - TestWithSetupStepAsFinalStepLinter
66
+
67
+
68
+ ## [0.12.1] - 2020-02-15
69
+
70
+ ### Fixed
71
+ - `TestShouldUseBackgroundLinter` no longer suggests moving steps to the background if they have an outline parameter.
72
+
73
+ ## [0.12.0] - 2020-02-13
74
+
75
+ ### Added
76
+ - New linters
77
+ - ElementWithCommonTagsLinter
78
+ - ElementWithDuplicateTagsLinter
79
+ - FeatureFileWithMismatchedNameLinter
80
+
81
+ - Now compatible with CukeModeler 2.x
82
+
83
+
84
+ ## [0.11.1] - 2019-11-07
85
+
86
+ ### Fixed
87
+ - Fixed the Pretty formatter so that it can handle linting problems whose locations do not have a line number.
88
+
89
+
90
+ ## [0.11.0] - 2019-11-01
91
+
92
+ ### Added
93
+ - New linters
94
+ - FeatureFileWithInvalidNameLinter
95
+ - TestWithBadNameLinter
96
+
97
+
98
+ ## [0.10.0] - 2019-10-04
99
+
100
+ ### Added
101
+ - New linters
102
+ - FeatureWithTooManyDifferentTagsLinter
103
+ - TestShouldUseBackgroundLinter
104
+ - TestWithActionStepAsFinalStepLinter
105
+ - TestWithSetupStepAfterActionStepLinter
106
+ - TestWithSetupStepAfterVerificationStepLinter
107
+ - TestWithSetupStepAsFinalStepLinter
108
+
109
+ ### Changed
110
+ - Improved some of the documentation and linting messages so that it is more clear what the problem is.
111
+
112
+ ## [0.9.0] - 2019-09-11
113
+
114
+ ### Added
115
+ - Linters can now be temporarily enabled/disabled within arbitrary portions of a feature file, in order to allow for exceptions to the otherwise blanket set of linting rules.
116
+
117
+ ## [0.8.0] - 2019-09-07
118
+
119
+ ### Changed
120
+ - The exit codes used by the CLI have been changed in order to better facilitate taking additional actions based on them.
121
+ - 0 - No linting problems found
122
+ - 1 - Linting problems found
123
+ - 2 - Some other problem (e.g. incorrect CLI usage)
124
+
125
+ ## [0.7.0] - 2019-07-12
126
+
127
+ ### Added
128
+ - Linters can now be configured en masse instead of having to configure the same property for all of them individually.
129
+
130
+ - New linters
131
+ - ElementWithTooManyTagsLinter
132
+ - FeatureWithoutNameLinter
133
+ - TestWithNoActionStepLinter
134
+ - TestWithNoNameLinter
135
+ - TestWithNoVerificationStepLinter
136
+
137
+ ## [0.6.0] - 2019-06-25
138
+
139
+ ### Added
140
+ - File paths can now be provided for linting without the user first having to turn them into models themselves.
141
+ - Option flags have been added to the command line interface. This will allow more flexibility when running from the command line and thereby reduce the need for writing a Ruby script for even basic usages of the gem.
142
+
143
+ ### Changed
144
+ - Linting is now done using a collection of model trees instead of taking only a single model tree.
145
+
146
+ ### Fixed
147
+ - Fixed a bug in the 'pretty' formatter that was causing problems to be ordered by line number instead of being ordered by file (and then by line number within those files).
148
+ - Added a missing `require` statement that is needed if no other code in the runtime environment has loaded the needed library already.
149
+ - Fixed a bug where enabling/disabling a linter would trigger additional configuration of the linter, even for linters that could not be configured.
150
+
151
+ ## [0.5.0] - 2019-05-25
152
+
153
+ ### Added
154
+ - New linters
155
+ - BackgroundDoesMoreThanSetupLinter
156
+ - FeatureWithoutDescriptionLinter
157
+ - SingleTestBackgroundLinter
158
+ - StepWithEndPeriodLinter
159
+ - StepWithTooManyCharactersLinter
160
+
161
+ ## [0.4.0] - 2019-05-11
162
+
163
+ ### Added
164
+ - A base linter class has been added that can be used to create custom linters more easily by providing common boilerplate code that every linter would need.
165
+
166
+ ### Changed
167
+ - Linters now return only a single problem instead of returning a collection of problems.
168
+
169
+ ## [0.3.1] - 2019-04-13
170
+
171
+ ### Added
172
+ - Now declaring required Ruby version. It's always been 2.x but now the gem actually says it officially.
173
+
174
+ ## [0.3.0] - 2019-04-07
175
+
176
+ ### Added
177
+ - Linter configuration: linters can now be configured (turned on/off, conditions changed, etc.) instead of having to always use the default settings
178
+
179
+ ## [0.2.0] - 2019-03-19
180
+
181
+ ### Added
182
+ - New linters
183
+ - ExampleWithoutNameLinter
184
+ - OutlineWithSingleExampleRowLinter
185
+ - TestWithTooManyStepsLinter
186
+
187
+
188
+ ## [0.1.0] - 2019-02-10
189
+
190
+ ### Added
191
+ - Custom linters, formatters, and command line usability
192
+
193
+
194
+ [Unreleased]: https://github.com/enkessler/cuke_linter/compare/v1.4.0...HEAD
195
+ [1.4.0]: https://github.com/enkessler/cuke_linter/compare/v1.3.0...v1.4.0
196
+ [1.3.0]: https://github.com/enkessler/cuke_linter/compare/v1.2.1...v1.3.0
197
+ [1.2.1]: https://github.com/enkessler/cuke_linter/compare/v1.2.0...v1.2.1
198
+ [1.2.0]: https://github.com/enkessler/cuke_linter/compare/v1.1.0...v1.2.0
199
+ [1.1.0]: https://github.com/enkessler/cuke_linter/compare/v1.0.1...v1.1.0
200
+ [1.0.1]: https://github.com/enkessler/cuke_linter/compare/v1.0.0...v1.0.1
201
+ [1.0.0]: https://github.com/enkessler/cuke_linter/compare/v0.13.0...v1.0.0
202
+ [0.13.0]: https://github.com/enkessler/cuke_linter/compare/v0.12.1...v0.13.0
203
+ [0.12.1]: https://github.com/enkessler/cuke_linter/compare/v0.12.0...v0.12.1
204
+ [0.12.0]: https://github.com/enkessler/cuke_linter/compare/v0.11.1...v0.12.0
205
+ [0.11.1]: https://github.com/enkessler/cuke_linter/compare/v0.11.0...v0.11.1
206
+ [0.11.0]: https://github.com/enkessler/cuke_linter/compare/v0.10.0...v0.11.0
207
+ [0.10.0]: https://github.com/enkessler/cuke_linter/compare/v0.9.0...v0.10.0
208
+ [0.9.0]: https://github.com/enkessler/cuke_linter/compare/v0.8.0...v0.9.0
209
+ [0.8.0]: https://github.com/enkessler/cuke_linter/compare/v0.7.0...v0.8.0
210
+ [0.7.0]: https://github.com/enkessler/cuke_linter/compare/v0.6.0...v0.7.0
211
+ [0.6.0]: https://github.com/enkessler/cuke_linter/compare/v0.5.0...v0.6.0
212
+ [0.5.0]: https://github.com/enkessler/cuke_linter/compare/v0.4.0...v0.5.0
213
+ [0.4.0]: https://github.com/enkessler/cuke_linter/compare/v0.3.1...v0.4.0
214
+ [0.3.1]: https://github.com/enkessler/cuke_linter/compare/v0.3.0...v0.3.1
215
+ [0.3.0]: https://github.com/enkessler/cuke_linter/compare/v0.2.0...v0.3.0
216
+ [0.2.0]: https://github.com/enkessler/cuke_linter/compare/v0.1.0...v0.2.0
217
+ [0.1.0]: https://github.com/enkessler/cuke_linter/compare/2bbd3f29f4eb45b6e9ea7d47c5bb47182bf4fde7...v0.1.0
data/LICENSE.txt CHANGED
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2018-2022 Eric Kessler
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018-2026 Eric Kessler, et al
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.