cuke_linter 1.2.1 → 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 (74) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +217 -200
  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 -36
  13. data/lib/cuke_linter/linters/element_with_common_tags_linter.rb +49 -50
  14. data/lib/cuke_linter/linters/element_with_duplicate_tags_linter.rb +48 -49
  15. data/lib/cuke_linter/linters/element_with_too_many_tags_linter.rb +46 -47
  16. data/lib/cuke_linter/linters/example_without_name_linter.rb +19 -20
  17. data/lib/cuke_linter/linters/feature_file_with_invalid_name_linter.rb +20 -21
  18. data/lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb +25 -26
  19. data/lib/cuke_linter/linters/feature_with_too_many_different_tags_linter.rb +35 -36
  20. data/lib/cuke_linter/linters/feature_without_description_linter.rb +19 -20
  21. data/lib/cuke_linter/linters/feature_without_name_linter.rb +19 -20
  22. data/lib/cuke_linter/linters/feature_without_scenarios_linter.rb +23 -20
  23. data/lib/cuke_linter/linters/linter.rb +42 -43
  24. data/lib/cuke_linter/linters/outline_with_single_example_row_linter.rb +22 -23
  25. data/lib/cuke_linter/linters/single_test_background_linter.rb +19 -20
  26. data/lib/cuke_linter/linters/step_with_end_period_linter.rb +19 -20
  27. data/lib/cuke_linter/linters/step_with_too_many_characters_linter.rb +38 -39
  28. data/lib/cuke_linter/linters/test_name_with_too_many_characters_linter.rb +38 -0
  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 -34
  31. data/lib/cuke_linter/linters/test_with_bad_name_linter.rb +23 -24
  32. data/lib/cuke_linter/linters/test_with_no_action_step_linter.rb +33 -34
  33. data/lib/cuke_linter/linters/test_with_no_name_linter.rb +19 -20
  34. data/lib/cuke_linter/linters/test_with_no_verification_step_linter.rb +33 -34
  35. data/lib/cuke_linter/linters/test_with_setup_step_after_action_step_linter.rb +46 -47
  36. data/lib/cuke_linter/linters/test_with_setup_step_after_verification_step_linter.rb +46 -47
  37. data/lib/cuke_linter/linters/test_with_setup_step_as_final_step_linter.rb +33 -34
  38. data/lib/cuke_linter/linters/test_with_too_many_steps_linter.rb +27 -28
  39. data/lib/cuke_linter/version.rb +4 -4
  40. data/lib/cuke_linter.rb +196 -198
  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 -17
  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 -0
  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 +23 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a58ecea412dacacc176aff36844a22a2be89b6e8fb530140c4a4c9af6f68b33d
4
- data.tar.gz: 6c59e3ef19cecf4f8348ffbb4b6e5f64b230bd38c569c776dda1afe0b214c856
3
+ metadata.gz: 81278d1cb23a92d60a037f740e334f3f51ebe4e57a298827613b920b3eef325f
4
+ data.tar.gz: acdd8537f7f2d2d93e10faf9837ce583f98e18b12831ba99e837656a228de2f0
5
5
  SHA512:
6
- metadata.gz: 163ed0e7cc11da407ce4af1a275f2cd51d0513caacdd007395af27782a111af83baa72928a85c7ba13b6a47d332564a71da906d068293f0d5cb4a5074c27d563
7
- data.tar.gz: 0d8098a3e266207030fa8bfcd573344aacf849eda5f33a308a3ecea3f4931ff6fb3f8dd86b62afcf76116ba30e5b2fad468d8ad287d8cb45aa1a3f6819c41c62
6
+ metadata.gz: 4151e021a06aef1c73ce3ae4f91d2b4d732c7205031d008f4a94eb341180514bcd0c9537ceb41ea39f340fa0e6441c9622f089b585bef03a2789e23a75b4ce7e
7
+ data.tar.gz: 50add9101d3e4a9eb28776381544b448a757c0c7a82ea6fc997bafbf4499bb1b5dfa9bd4f2d888329af01b8c24950f1983820adfbdf63696db1ed9cfb91043f0
data/CHANGELOG.md CHANGED
@@ -1,200 +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.2.1] - 2021-06-13
12
-
13
- ### Fixed
14
- - Updated the minimum required Ruby version to `2.1`. The gem has never had `2.0` compatible code (due to using
15
- named parameters without default values), so it's easier to just officially drop `2.0` 'support' than to change
16
- the API to enable a use case that was never used anyway.
17
-
18
- ## [1.2.0] - 2021-01-08
19
-
20
- ### Added
21
- - Ruby 3.x is now supported
22
-
23
- ## [1.1.0] - 2020-06-14
24
-
25
- ### Added
26
- - Now compatible with CukeModeler 3.x
27
-
28
- ## [1.0.1] - 2020-05-06
29
-
30
- ### Fixed
31
- - Replaced some code that was not valid with earlier versions of Ruby 2.x, with which this gem is specified as being compatible.
32
-
33
-
34
- ## [1.0.0] - 2020-03-09
35
-
36
- ### Changed
37
- - 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.
38
-
39
-
40
- ## [0.13.0] - 2020-03-01
41
-
42
- ### Added
43
- - Added the ability to configure relevant keywords for linters whose behavior is impacted by the dialect in which feature files are written.
44
- - BackgroundDoesMoreThanSetupLinter
45
- - TestWithActionStepAsFinalStepLinter
46
- - TestWithNoActionStepLinter
47
- - TestWithNoVerificationStepLinter
48
- - TestWithSetupStepAfterActionStepLinter
49
- - TestWithSetupStepAfterVerificationStepLinter
50
- - TestWithSetupStepAsFinalStepLinter
51
-
52
-
53
- ## [0.12.1] - 2020-02-15
54
-
55
- ### Fixed
56
- - `TestShouldUseBackgroundLinter` no longer suggests moving steps to the background if they have an outline parameter.
57
-
58
- ## [0.12.0] - 2020-02-13
59
-
60
- ### Added
61
- - New linters
62
- - ElementWithCommonTagsLinter
63
- - ElementWithDuplicateTagsLinter
64
- - FeatureFileWithMismatchedNameLinter
65
-
66
- - Now compatible with CukeModeler 2.x
67
-
68
-
69
- ## [0.11.1] - 2019-11-07
70
-
71
- ### Fixed
72
- - Fixed the Pretty formatter so that it can handle linting problems whose locations do not have a line number.
73
-
74
-
75
- ## [0.11.0] - 2019-11-01
76
-
77
- ### Added
78
- - New linters
79
- - FeatureFileWithInvalidNameLinter
80
- - TestWithBadNameLinter
81
-
82
-
83
- ## [0.10.0] - 2019-10-04
84
-
85
- ### Added
86
- - New linters
87
- - FeatureWithTooManyDifferentTagsLinter
88
- - TestShouldUseBackgroundLinter
89
- - TestWithActionStepAsFinalStepLinter
90
- - TestWithSetupStepAfterActionStepLinter
91
- - TestWithSetupStepAfterVerificationStepLinter
92
- - TestWithSetupStepAsFinalStepLinter
93
-
94
- ### Changed
95
- - Improved some of the documentation and linting messages so that it is more clear what the problem is.
96
-
97
- ## [0.9.0] - 2019-09-11
98
-
99
- ### Added
100
- - 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.
101
-
102
- ## [0.8.0] - 2019-09-07
103
-
104
- ### Changed
105
- - The exit codes used by the CLI have been changed in order to better facilitate taking additional actions based on them.
106
- - 0 - No linting problems found
107
- - 1 - Linting problems found
108
- - 2 - Some other problem (e.g. incorrect CLI usage)
109
-
110
- ## [0.7.0] - 2019-07-12
111
-
112
- ### Added
113
- - Linters can now be configured en masse instead of having to configure the same property for all of them individually.
114
-
115
- - New linters
116
- - ElementWithTooManyTagsLinter
117
- - FeatureWithoutNameLinter
118
- - TestWithNoActionStepLinter
119
- - TestWithNoNameLinter
120
- - TestWithNoVerificationStepLinter
121
-
122
- ## [0.6.0] - 2019-06-25
123
-
124
- ### Added
125
- - File paths can now be provided for linting without the user first having to turn them into models themselves.
126
- - 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.
127
-
128
- ### Changed
129
- - Linting is now done using a collection of model trees instead of taking only a single model tree.
130
-
131
- ### Fixed
132
- - 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).
133
- - Added a missing `require` statement that is needed if no other code in the runtime environment has loaded the needed library already.
134
- - Fixed a bug where enabling/disabling a linter would trigger additional configuration of the linter, even for linters that could not be configured.
135
-
136
- ## [0.5.0] - 2019-05-25
137
-
138
- ### Added
139
- - New linters
140
- - BackgroundDoesMoreThanSetupLinter
141
- - FeatureWithoutDescriptionLinter
142
- - SingleTestBackgroundLinter
143
- - StepWithEndPeriodLinter
144
- - StepWithTooManyCharactersLinter
145
-
146
- ## [0.4.0] - 2019-05-11
147
-
148
- ### Added
149
- - 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.
150
-
151
- ### Changed
152
- - Linters now return only a single problem instead of returning a collection of problems.
153
-
154
- ## [0.3.1] - 2019-04-13
155
-
156
- ### Added
157
- - Now declaring required Ruby version. It's always been 2.x but now the gem actually says it officially.
158
-
159
- ## [0.3.0] - 2019-04-07
160
-
161
- ### Added
162
- - Linter configuration: linters can now be configured (turned on/off, conditions changed, etc.) instead of having to always use the default settings
163
-
164
- ## [0.2.0] - 2019-03-19
165
-
166
- ### Added
167
- - New linters
168
- - ExampleWithoutNameLinter
169
- - OutlineWithSingleExampleRowLinter
170
- - TestWithTooManyStepsLinter
171
-
172
-
173
- ## [0.1.0] - 2019-02-10
174
-
175
- ### Added
176
- - Custom linters, formatters, and command line usability
177
-
178
-
179
- [Unreleased]: https://github.com/enkessler/cuke_linter/compare/v1.2.1...HEAD
180
- [1.2.1]: https://github.com/enkessler/cuke_linter/compare/v1.2.0...v1.2.1
181
- [1.2.0]: https://github.com/enkessler/cuke_linter/compare/v1.1.0...v1.2.0
182
- [1.1.0]: https://github.com/enkessler/cuke_linter/compare/v1.0.1...v1.1.0
183
- [1.0.1]: https://github.com/enkessler/cuke_linter/compare/v1.0.0...v1.0.1
184
- [1.0.0]: https://github.com/enkessler/cuke_linter/compare/v0.13.0...v1.0.0
185
- [0.13.0]: https://github.com/enkessler/cuke_linter/compare/v0.12.1...v0.13.0
186
- [0.12.1]: https://github.com/enkessler/cuke_linter/compare/v0.12.0...v0.12.1
187
- [0.12.0]: https://github.com/enkessler/cuke_linter/compare/v0.11.1...v0.12.0
188
- [0.11.1]: https://github.com/enkessler/cuke_linter/compare/v0.11.0...v0.11.1
189
- [0.11.0]: https://github.com/enkessler/cuke_linter/compare/v0.10.0...v0.11.0
190
- [0.10.0]: https://github.com/enkessler/cuke_linter/compare/v0.9.0...v0.10.0
191
- [0.9.0]: https://github.com/enkessler/cuke_linter/compare/v0.8.0...v0.9.0
192
- [0.8.0]: https://github.com/enkessler/cuke_linter/compare/v0.7.0...v0.8.0
193
- [0.7.0]: https://github.com/enkessler/cuke_linter/compare/v0.6.0...v0.7.0
194
- [0.6.0]: https://github.com/enkessler/cuke_linter/compare/v0.5.0...v0.6.0
195
- [0.5.0]: https://github.com/enkessler/cuke_linter/compare/v0.4.0...v0.5.0
196
- [0.4.0]: https://github.com/enkessler/cuke_linter/compare/v0.3.1...v0.4.0
197
- [0.3.1]: https://github.com/enkessler/cuke_linter/compare/v0.3.0...v0.3.1
198
- [0.3.0]: https://github.com/enkessler/cuke_linter/compare/v0.2.0...v0.3.0
199
- [0.2.0]: https://github.com/enkessler/cuke_linter/compare/v0.1.0...v0.2.0
200
- [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-2021 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.