rubocop-lts 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b48093623992a1550fdfa3c2142a022a63c1d9cfa96c09763a1b6df40152da2d
4
+ data.tar.gz: d57517b2bf1e6f1f88414758b94ec659fa98cf92b3180a6743b9b642650068e9
5
+ SHA512:
6
+ metadata.gz: 21653987f2c1172edd1376f47dd20b516ae4738840818e2b61be24779241dab12ac3599ab3cea64113e88dce15c4316eaca6966c50924f82c289088e8496d01b
7
+ data.tar.gz: e39e9f46980ef8ba7ea9f1ce205f657597d9ccb12cd3c3c55c05a4857e28066fdfe5ab5122253832572a3875c938479556846189e6650c2a4499a8bcb76746f0
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
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
+ ### Added
9
+ ### Changed
10
+ ### Fixed
11
+ ### Removed
12
+
13
+ ## [0.1.0] - 2023-05-22
14
+ ### Added
15
+ - Initial even release supporting analysis of Ruby >= 1.8
16
+ - Configures many linting tools via `standard-rubocop-lts`
17
+
18
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v0.1.0...HEAD
19
+ [0.1.0]: https://gitlab.com/rubocop-lts/rubocop-lts/-/tags/v0.1.0
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at peter.boling@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,39 @@
1
+ ## Contributing
2
+
3
+ Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/rubocop-lts/rubocop-lts][🚎src-main]
4
+ . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
5
+ the [code of conduct][conduct].
6
+
7
+ To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request
8
+ and post a message to the [gitter chat][🏘chat].
9
+
10
+ ## Release
11
+
12
+ To release a new version:
13
+
14
+ 1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check.
15
+ 2. update the version number in `version.rb`
16
+ 3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`.
17
+ 4. run `bundle exec rake build:checksum`
18
+ 5. move the built gem to project root
19
+ 6. run `bin/checksum` to create the missing SHA256 checksum
20
+ 7. move the built gem back to `pkg/`
21
+ 8. commit the changes
22
+ 9. run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][rubygems].
23
+
24
+ NOTE: You will need to have a public key in `certs/`, and list your cert in the
25
+ `gemspec`, in order to sign the new release.
26
+ See: [RubyGems Security Guide][rubygems-security-guide]
27
+
28
+ ## Contributors
29
+
30
+ See: [https://gitlab.com/rubocop-lts/rubocop-lts/-/graphs/main][🖐contributors]
31
+
32
+ [comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
33
+
34
+ [🤝conduct]: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/main/CODE_OF_CONDUCT.md
35
+ [🖐contributors]: https://gitlab.com/rubocop-lts/rubocop-lts/-/graphs/main
36
+ [🚎src-main]: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/main
37
+ [🏘chat]: https://gitter.im/rubocop-lts/community
38
+ [rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
39
+ [rubygems]: https://rubygems.org
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Peter Boling
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.
data/README.md ADDED
@@ -0,0 +1,448 @@
1
+ <p align="center">
2
+ <a href="https://rubocop.org#gh-light-mode-only" target="_blank" rel="noopener">
3
+ <img height="120px" src="https://github.com/rubocop-lts/rubocop-lts/raw/main/docs/images/logo/rubocop-light.svg?raw=true" alt="SVG RuboCop Logo, Copyright (c) 2014 Dimiter Petrov, CC BY-NC 4.0, see docs/images/logo/README.txt">
4
+ </a>
5
+ <a href="https://rubocop.org#gh-dark-mode-only" target="_blank" rel="noopener">
6
+ <img height="120px" src="https://github.com/rubocop-lts/rubocop-lts/raw/main/docs/images/logo/rubocop-dark.svg?raw=true" alt="SVG RuboCop Logo, Copyright (c) 2014 Dimiter Petrov, CC BY-NC 4.0, see docs/images/logo/README.txt">
7
+ </a>
8
+ <a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
9
+ <img height="120px" src="https://github.com/rubocop-lts/rubocop-lts/raw/main/docs/images/logo/ruby-logo.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5, see docs/images/logo/README.txt">
10
+ </a>
11
+ <a href="https://semver.org/#gh-light-mode-only" target="_blank" rel="noopener">
12
+ <img height="120px" src="https://github.com/rubocop-lts/rubocop-lts/raw/main/docs/images/logo/semver-light.svg?raw=true" alt="SemVer.org Logo by @maxhaz, see docs/images/logo/README.txt">
13
+ </a>
14
+ <a href="https://semver.org/#gh-dark-mode-only" target="_blank" rel="noopener">
15
+ <img height="120px" src="https://github.com/rubocop-lts/rubocop-lts/raw/main/docs/images/logo/semver-dark.svg?raw=true" alt="SemVer.org Logo by @maxhaz, see docs/images/logo/README.txt">
16
+ </a>
17
+ </p>
18
+
19
+ # RuboCop LTS
20
+
21
+ ## PROJECT DOCUMENTATION
22
+
23
+ * 🌱 [Why Build This?][Why-Build-This]
24
+ * 🌱 [Convention > Configuration][Convention-Over-Configuration]
25
+ * 🌱 [Even Releases][Even-Major-Release] (use these!)
26
+ * 🌱 [Odd Releases][Odd-Major-Release] (deprecated)
27
+ * 🌱 [How to Upgrade Ruby (1.8 to 3.2)!][How-To-Upgrade-Ruby]
28
+ * 👩‍💻 [Org Health][OrgHealth]
29
+ * 🔧 [Usage][Usage]
30
+ * 🧮 [Development][Development]
31
+ * ⚡️ [Contributing][Contributing]
32
+ * 🌈 [Contributors][Contributors]
33
+ * 📄 [License][License]
34
+ * © [Copyright][Copyright]
35
+ * 🤝 [Code of Conduct][Code of Conduct]
36
+ * 📌 [Versioning][Versioning]
37
+
38
+ [Why-Build-This]: https://github.com/rubocop-lts/.github/blob/main/profile/WHY_BUILD_THIS.md
39
+ [Convention-Over-Configuration]: https://github.com/rubocop-lts/.github/blob/main/profile/CONV_OVER_CONF.md
40
+ [Even-Major-Release]: https://github.com/rubocop-lts/.github/blob/main/profile/CONV_OVER_CONF.md#even-major-release
41
+ [Odd-Major-Release]: https://github.com/rubocop-lts/.github/blob/main/profile/CONV_OVER_CONF.md#odd-major-release
42
+ [How-To-Upgrade-Ruby]: https://github.com/rubocop-lts/.github/blob/main/profile/HOW_TO_UPGRADE_RUBY.md
43
+ [OrgHealth]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#org-health-
44
+ [Usage]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#usage-
45
+ [Development]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#development-
46
+ [Contributing]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#contributing-
47
+ [Contributors]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#contributors-
48
+ [License]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#license-
49
+ [Copyright]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#copyright-
50
+ [Code of Conduct]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#code-of-conduct-
51
+ [Versioning]: https://github.com/rubocop-lts/.github/blob/main/profile/README.md#versioning-
52
+
53
+ ## This README
54
+
55
+ * 🌳 [This Branch](#this-branch-)
56
+ * ‍💻 [Project Health](#project-health-)
57
+ * ✨ [Installation](#installation-)
58
+
59
+ ## This Branch 🌳
60
+
61
+ <!-- FIND VERSION -->
62
+ **This README is for the even release of `rubocop-lts` supporting Ruby >= 1.8.**
63
+
64
+ This gem configures many gems for you:
65
+
66
+ - rubocop
67
+ - rubocop-gradual
68
+ - rubocop-md
69
+ - rubocop-rake
70
+ - rubocop-shopify
71
+ - rubocop-thread_safety
72
+ - standard
73
+ - standard-performance (incl. rubocop-performance)
74
+ - standard-custom
75
+ - standard-rubocop-lts (ruby version-specific rules)
76
+
77
+ And optionally, if you are using RSpec:
78
+
79
+ - rubocop-rspec
80
+
81
+ And optionally, if you are building a RubyGem:
82
+
83
+ - rubocop-packaging
84
+
85
+ And optionally, if you are building a Rails app:
86
+
87
+ - standard-rails (incl. rubocop-rails)
88
+ - betterlint
89
+
90
+ ## Project Health 👩‍💻
91
+
92
+ | Gem Name | Version | Downloads | CI | Activity |
93
+ |------------------------------|-------------------------------------|----------------------------------------------------------------------|-----------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
94
+ | [`rubocop-lts`][⛳️lts-gh] | [![Gem Version][⛳️lts-vi]][⛳️lts-g] | [![Total DL][🖇️lts-dti]][⛳️lts-g] [![DL Rank][🏘️lts-rti]][⛳️lts-g] | [![Current][🚎lts-cwfi]][🚎lts-cwf] [![Heads][🖐lts-hwfi]][🖐lts-hwf] | [![Open Issues][📗lts-ioi]][📗lts-io] [![Closed Issues][🚀lts-ici]][🚀lts-ic] [![Open PRs][💄lts-poi]][💄lts-po] [![Closed PRs][👽lts-pci]][👽lts-pc] |
95
+ | [`rubocop-ruby1_8`][⛳️18-gh] | [![Gem Version][⛳️18-vi]][⛳️18-g] | [![Total DL][🖇️18-dti]][⛳️18-g] [![DL Rank][🏘️18-rti]][⛳️18-g] | [![Current][🚎18-cwfi]][🚎18-cwf] [![Heads][🖐18-hwfi]][🖐18-hwf] | [![Open Issues][📗18-ioi]][📗18-io] [![Closed Issues][🚀18-ici]][🚀18-ic] [![Open PRs][💄18-poi]][💄18-po] [![Closed PRs][👽18-pci]][👽18-pc] |
96
+ | [`rubocop-ruby1_9`][⛳️19-gh] | [![Gem Version][⛳️19-vi]][⛳️19-g] | [![Total DL][🖇️19-dti]][⛳️19-g] [![DL Rank][🏘️19-rti]][⛳️19-g] | [![Current][🚎19-cwfi]][🚎19-cwf] [![Heads][🖐19-hwfi]][🖐19-hwf] | [![Open Issues][📗19-ioi]][📗19-io] [![Closed Issues][🚀19-ici]][🚀19-ic] [![Open PRs][💄19-poi]][💄19-po] [![Closed PRs][👽19-pci]][👽19-pc] |
97
+ | [`rubocop-ruby2_0`][⛳️20-gh] | [![Gem Version][⛳️20-vi]][⛳️20-g] | [![Total DL][🖇️20-dti]][⛳️20-g] [![DL Rank][🏘️20-rti]][⛳️20-g] | [![Current][🚎20-cwfi]][🚎20-cwf] [![Heads][🖐20-hwfi]][🖐20-hwf] | [![Open Issues][📗20-ioi]][📗20-io] [![Closed Issues][🚀20-ici]][🚀20-ic] [![Open PRs][💄20-poi]][💄20-po] [![Closed PRs][👽20-pci]][👽20-pc] |
98
+ | [`rubocop-ruby2_1`][⛳️21-gh] | [![Gem Version][⛳️21-vi]][⛳️21-g] | [![Total DL][🖇️21-dti]][⛳️21-g] [![DL Rank][🏘️21-rti]][⛳️21-g] | [![Current][🚎21-cwfi]][🚎21-cwf] [![Heads][🖐21-hwfi]][🖐21-hwf] | [![Open Issues][📗21-ioi]][📗21-io] [![Closed Issues][🚀21-ici]][🚀21-ic] [![Open PRs][💄21-poi]][💄21-po] [![Closed PRs][👽21-pci]][👽21-pc] |
99
+ | [`rubocop-ruby2_2`][⛳️22-gh] | [![Gem Version][⛳️22-vi]][⛳️22-g] | [![Total DL][🖇️22-dti]][⛳️22-g] [![DL Rank][🏘️22-rti]][⛳️22-g] | [![Current][🚎22-cwfi]][🚎22-cwf] [![Heads][🖐22-hwfi]][🖐22-hwf] | [![Open Issues][📗22-ioi]][📗22-io] [![Closed Issues][🚀22-ici]][🚀22-ic] [![Open PRs][💄22-poi]][💄22-po] [![Closed PRs][👽22-pci]][👽22-pc] |
100
+ | [`rubocop-ruby2_3`][⛳️23-gh] | [![Gem Version][⛳️23-vi]][⛳️23-g] | [![Total DL][🖇️23-dti]][⛳️23-g] [![DL Rank][🏘️23-rti]][⛳️23-g] | [![Current][🚎23-cwfi]][🚎23-cwf] [![Heads][🖐23-hwfi]][🖐23-hwf] | [![Open Issues][📗23-ioi]][📗23-io] [![Closed Issues][🚀23-ici]][🚀23-ic] [![Open PRs][💄23-poi]][💄23-po] [![Closed PRs][👽23-pci]][👽23-pc] |
101
+ | [`rubocop-ruby2_4`][⛳️24-gh] | [![Gem Version][⛳️24-vi]][⛳️24-g] | [![Total DL][🖇️24-dti]][⛳️24-g] [![DL Rank][🏘️24-rti]][⛳️24-g] | [![Current][🚎24-cwfi]][🚎24-cwf] [![Heads][🖐24-hwfi]][🖐24-hwf] | [![Open Issues][📗24-ioi]][📗24-io] [![Closed Issues][🚀24-ici]][🚀24-ic] [![Open PRs][💄24-poi]][💄24-po] [![Closed PRs][👽24-pci]][👽24-pc] |
102
+ | [`rubocop-ruby2_5`][⛳️25-gh] | [![Gem Version][⛳️25-vi]][⛳️25-g] | [![Total DL][🖇️25-dti]][⛳️25-g] [![DL Rank][🏘️25-rti]][⛳️25-g] | [![Current][🚎25-cwfi]][🚎25-cwf] [![Heads][🖐25-hwfi]][🖐25-hwf] | [![Open Issues][📗25-ioi]][📗25-io] [![Closed Issues][🚀25-ici]][🚀25-ic] [![Open PRs][💄25-poi]][💄25-po] [![Closed PRs][👽25-pci]][👽25-pc] |
103
+ | [`rubocop-ruby2_6`][⛳️26-gh] | [![Gem Version][⛳️26-vi]][⛳️26-g] | [![Total DL][🖇️26-dti]][⛳️26-g] [![DL Rank][🏘️26-rti]][⛳️26-g] | [![Current][🚎26-cwfi]][🚎26-cwf] [![Heads][🖐26-hwfi]][🖐26-hwf] | [![Open Issues][📗26-ioi]][📗26-io] [![Closed Issues][🚀26-ici]][🚀26-ic] [![Open PRs][💄26-poi]][💄26-po] [![Closed PRs][👽26-pci]][👽26-pc] |
104
+ | [`rubocop-ruby2_7`][⛳️27-gh] | [![Gem Version][⛳️27-vi]][⛳️27-g] | [![Total DL][🖇️27-dti]][⛳️27-g] [![DL Rank][🏘️27-rti]][⛳️27-g] | [![Current][🚎27-cwfi]][🚎27-cwf] [![Heads][🖐27-hwfi]][🖐27-hwf] | [![Open Issues][📗27-ioi]][📗27-io] [![Closed Issues][🚀27-ici]][🚀27-ic] [![Open PRs][💄27-poi]][💄27-po] [![Closed PRs][👽27-pci]][👽27-pc] |
105
+ | [`rubocop-ruby3_0`][⛳️30-gh] | [![Gem Version][⛳️30-vi]][⛳️30-g] | [![Total DL][🖇️30-dti]][⛳️30-g] [![DL Rank][🏘️30-rti]][⛳️30-g] | [![Current][🚎30-cwfi]][🚎30-cwf] [![Heads][🖐30-hwfi]][🖐30-hwf] | [![Open Issues][📗30-ioi]][📗30-io] [![Closed Issues][🚀30-ici]][🚀30-ic] [![Open PRs][💄30-poi]][💄30-po] [![Closed PRs][👽30-pci]][👽30-pc] |
106
+ | [`rubocop-ruby3_1`][⛳️31-gh] | [![Gem Version][⛳️31-vi]][⛳️31-g] | [![Total DL][🖇️31-dti]][⛳️31-g] [![DL Rank][🏘️31-rti]][⛳️31-g] | [![Current][🚎31-cwfi]][🚎31-cwf] [![Heads][🖐31-hwfi]][🖐31-hwf] | [![Open Issues][📗31-ioi]][📗31-io] [![Closed Issues][🚀31-ici]][🚀31-ic] [![Open PRs][💄31-poi]][💄31-po] [![Closed PRs][👽31-pci]][👽31-pc] |
107
+ | [`rubocop-ruby3_2`][⛳️32-gh] | [![Gem Version][⛳️32-vi]][⛳️32-g] | [![Total DL][🖇️32-dti]][⛳️32-g] [![DL Rank][🏘️32-rti]][⛳️32-g] | [![Current][🚎32-cwfi]][🚎32-cwf] [![Heads][🖐32-hwfi]][🖐32-hwf] | [![Open Issues][📗32-ioi]][📗32-io] [![Closed Issues][🚀32-ici]][🚀32-ic] [![Open PRs][💄32-poi]][💄32-po] [![Closed PRs][👽32-pci]][👽32-pc] |
108
+
109
+ ## Installation ✨
110
+
111
+ Install the gem and add to the application's Gemfile by executing:
112
+
113
+ $ bundle add rubocop-lts -r false
114
+
115
+ NOTE: If you are using **Rails** remove the `-r false`,
116
+ so the Railtie will load and rake tasks will be loaded automatically.
117
+
118
+ If bundler is not being used to manage dependencies, install the gem by executing:
119
+
120
+ $ gem install rubocop-lts
121
+
122
+ Or add this line to your application's Gemfile:
123
+
124
+ <!-- FIND VERSION -->
125
+ ```ruby
126
+ gem "rubocop-lts", "~> 0.1", require: false
127
+ ```
128
+
129
+ And then execute:
130
+
131
+ $ bundle
132
+
133
+ ### Dependabot Noise Reduction
134
+
135
+ Add the following to `.github/dependabot.yml` if you use Github Actions.
136
+
137
+ ```yaml
138
+ ignore:
139
+ - dependency-name: "rubocop-lts"
140
+ ```
141
+
142
+ <!-- columnar badge #s for Project Health table:
143
+ ⛳️
144
+ 🖇
145
+ 🏘
146
+ 🚎
147
+ 🖐
148
+ 🧮
149
+ 📗
150
+ 🚀
151
+ 💄
152
+ 👽
153
+ -->
154
+
155
+ [⛳️lts-vi]: http://img.shields.io/gem/v/rubocop-lts.svg
156
+ [🖇️lts-dti]: https://img.shields.io/gem/dt/rubocop-lts.svg
157
+ [🏘️lts-rti]: https://img.shields.io/gem/rt/rubocop-lts.svg
158
+ [🚎lts-cwf]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/current.yml
159
+ [🚎lts-cwfi]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/current.yml/badge.svg
160
+ [🖐lts-hwf]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/heads.yml
161
+ [🖐lts-hwfi]: https://github.com/rubocop-lts/rubocop-lts/actions/workflows/heads.yml/badge.svg
162
+ [📗lts-io]: https://github.com/rubocop-lts/rubocop-lts/issues
163
+ [📗lts-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-lts
164
+ [🚀lts-ic]: https://github.com/rubocop-lts/rubocop-lts/issues?q=is%3Aissue+is%3Aclosed
165
+ [🚀lts-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-lts
166
+ [💄lts-po]: https://github.com/rubocop-lts/rubocop-lts/pulls
167
+ [💄lts-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-lts
168
+ [👽lts-pc]: https://github.com/rubocop-lts/rubocop-lts/pulls?q=is%3Apr+is%3Aclosed
169
+ [👽lts-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-lts
170
+ [⛳️lts-g]: https://rubygems.org/gems/rubocop-lts
171
+ [⛳️lts-gh]: https://github.com/rubocop-lts/rubocop-lts
172
+ [⛳️18-vi]: http://img.shields.io/gem/v/rubocop-ruby1_8.svg
173
+ [🖇️18-dti]: https://img.shields.io/gem/dt/rubocop-ruby1_8.svg
174
+ [🏘️18-rti]: https://img.shields.io/gem/rt/rubocop-ruby1_8.svg
175
+ [🚎18-cwf]: https://github.com/rubocop-lts/rubocop-ruby1_8/actions/workflows/current.yml
176
+ [🚎18-cwfi]: https://github.com/rubocop-lts/rubocop-ruby1_8/actions/workflows/current.yml/badge.svg
177
+ [🖐18-hwf]: https://github.com/rubocop-lts/rubocop-ruby1_8/actions/workflows/heads.yml
178
+ [🖐18-hwfi]: https://github.com/rubocop-lts/rubocop-ruby1_8/actions/workflows/heads.yml/badge.svg
179
+ [📗18-io]: https://github.com/rubocop-lts/rubocop-ruby1_8/issues
180
+ [📗18-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby1_8
181
+ [🚀18-ic]: https://github.com/rubocop-lts/rubocop-ruby1_8/issues?q=is%3Aissue+is%3Aclosed
182
+ [🚀18-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby1_8
183
+ [💄18-po]: https://github.com/rubocop-lts/rubocop-ruby1_8/pulls
184
+ [💄18-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby1_8
185
+ [👽18-pc]: https://github.com/rubocop-lts/rubocop-ruby1_8/pulls?q=is%3Apr+is%3Aclosed
186
+ [👽18-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby1_8
187
+ [⛳️18-g]: https://rubygems.org/gems/rubocop-ruby1_8
188
+ [⛳️18-gh]: https://github.com/rubocop-lts/rubocop-ruby1_8
189
+ [⛳️19-vi]: http://img.shields.io/gem/v/rubocop-ruby1_9.svg
190
+ [🖇️19-dti]: https://img.shields.io/gem/dt/rubocop-ruby1_9.svg
191
+ [🏘️19-rti]: https://img.shields.io/gem/rt/rubocop-ruby1_9.svg
192
+ [🚎19-cwf]: https://github.com/rubocop-lts/rubocop-ruby1_9/actions/workflows/current.yml
193
+ [🚎19-cwfi]: https://github.com/rubocop-lts/rubocop-ruby1_9/actions/workflows/current.yml/badge.svg
194
+ [🖐19-hwf]: https://github.com/rubocop-lts/rubocop-ruby1_9/actions/workflows/heads.yml
195
+ [🖐19-hwfi]: https://github.com/rubocop-lts/rubocop-ruby1_9/actions/workflows/heads.yml/badge.svg
196
+ [📗19-io]: https://github.com/rubocop-lts/rubocop-ruby1_9/issues
197
+ [📗19-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby1_9
198
+ [🚀19-ic]: https://github.com/rubocop-lts/rubocop-ruby1_9/issues?q=is%3Aissue+is%3Aclosed
199
+ [🚀19-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby1_9
200
+ [💄19-po]: https://github.com/rubocop-lts/rubocop-ruby1_9/pulls
201
+ [💄19-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby1_9
202
+ [👽19-pc]: https://github.com/rubocop-lts/rubocop-ruby1_9/pulls?q=is%3Apr+is%3Aclosed
203
+ [👽19-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby1_9
204
+ [⛳️19-g]: https://rubygems.org/gems/rubocop-ruby1_9
205
+ [⛳️19-gh]: https://github.com/rubocop-lts/rubocop-ruby1_9
206
+ [⛳️20-vi]: http://img.shields.io/gem/v/rubocop-ruby2_0.svg
207
+ [🖇️20-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_0.svg
208
+ [🏘️20-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_0.svg
209
+ [🚎20-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_0/actions/workflows/current.yml
210
+ [🚎20-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_0/actions/workflows/current.yml/badge.svg
211
+ [🖐20-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_0/actions/workflows/heads.yml
212
+ [🖐20-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_0/actions/workflows/heads.yml/badge.svg
213
+ [📗20-io]: https://github.com/rubocop-lts/rubocop-ruby2_0/issues
214
+ [📗20-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_0
215
+ [🚀20-ic]: https://github.com/rubocop-lts/rubocop-ruby2_0/issues?q=is%3Aissue+is%3Aclosed
216
+ [🚀20-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_0
217
+ [💄20-po]: https://github.com/rubocop-lts/rubocop-ruby2_0/pulls
218
+ [💄20-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_0
219
+ [👽20-pc]: https://github.com/rubocop-lts/rubocop-ruby2_0/pulls?q=is%3Apr+is%3Aclosed
220
+ [👽20-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_0
221
+ [⛳️20-g]: https://rubygems.org/gems/rubocop-ruby2_0
222
+ [⛳️20-gh]: https://github.com/rubocop-lts/rubocop-ruby2_0
223
+ [⛳️21-vi]: http://img.shields.io/gem/v/rubocop-ruby2_1.svg
224
+ [🖇️21-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_1.svg
225
+ [🏘️21-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_1.svg
226
+ [🚎21-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_1/actions/workflows/current.yml
227
+ [🚎21-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_1/actions/workflows/current.yml/badge.svg
228
+ [🖐21-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_1/actions/workflows/heads.yml
229
+ [🖐21-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_1/actions/workflows/heads.yml/badge.svg
230
+ [📗21-io]: https://github.com/rubocop-lts/rubocop-ruby2_1/issues
231
+ [📗21-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_1
232
+ [🚀21-ic]: https://github.com/rubocop-lts/rubocop-ruby2_1/issues?q=is%3Aissue+is%3Aclosed
233
+ [🚀21-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_1
234
+ [💄21-po]: https://github.com/rubocop-lts/rubocop-ruby2_1/pulls
235
+ [💄21-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_1
236
+ [👽21-pc]: https://github.com/rubocop-lts/rubocop-ruby2_1/pulls?q=is%3Apr+is%3Aclosed
237
+ [👽21-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_1
238
+ [⛳️21-g]: https://rubygems.org/gems/rubocop-ruby2_1
239
+ [⛳️21-gh]: https://github.com/rubocop-lts/rubocop-ruby2_1
240
+ [⛳️22-vi]: http://img.shields.io/gem/v/rubocop-ruby2_2.svg
241
+ [🖇️22-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_2.svg
242
+ [🏘️22-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_2.svg
243
+ [🚎22-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_2/actions/workflows/current.yml
244
+ [🚎22-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_2/actions/workflows/current.yml/badge.svg
245
+ [🖐22-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_2/actions/workflows/heads.yml
246
+ [🖐22-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_2/actions/workflows/heads.yml/badge.svg
247
+ [📗22-io]: https://github.com/rubocop-lts/rubocop-ruby2_2/issues
248
+ [📗22-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_2
249
+ [🚀22-ic]: https://github.com/rubocop-lts/rubocop-ruby2_2/issues?q=is%3Aissue+is%3Aclosed
250
+ [🚀22-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_2
251
+ [💄22-po]: https://github.com/rubocop-lts/rubocop-ruby2_2/pulls
252
+ [💄22-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_2
253
+ [👽22-pc]: https://github.com/rubocop-lts/rubocop-ruby2_2/pulls?q=is%3Apr+is%3Aclosed
254
+ [👽22-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_2
255
+ [⛳️22-g]: https://rubygems.org/gems/rubocop-ruby2_2
256
+ [⛳️22-gh]: https://github.com/rubocop-lts/rubocop-ruby2_2
257
+ [⛳️23-vi]: http://img.shields.io/gem/v/rubocop-ruby2_3.svg
258
+ [🖇️23-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_3.svg
259
+ [🏘️23-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_3.svg
260
+ [🚎23-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_3/actions/workflows/current.yml
261
+ [🚎23-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_3/actions/workflows/current.yml/badge.svg
262
+ [🖐23-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_3/actions/workflows/heads.yml
263
+ [🖐23-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_3/actions/workflows/heads.yml/badge.svg
264
+ [📗23-io]: https://github.com/rubocop-lts/rubocop-ruby2_3/issues
265
+ [📗23-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_3
266
+ [🚀23-ic]: https://github.com/rubocop-lts/rubocop-ruby2_3/issues?q=is%3Aissue+is%3Aclosed
267
+ [🚀23-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_3
268
+ [💄23-po]: https://github.com/rubocop-lts/rubocop-ruby2_3/pulls
269
+ [💄23-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_3
270
+ [👽23-pc]: https://github.com/rubocop-lts/rubocop-ruby2_3/pulls?q=is%3Apr+is%3Aclosed
271
+ [👽23-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_3
272
+ [⛳️23-g]: https://rubygems.org/gems/rubocop-ruby2_3
273
+ [⛳️23-gh]: https://github.com/rubocop-lts/rubocop-ruby2_3
274
+ [⛳️24-vi]: http://img.shields.io/gem/v/rubocop-ruby2_4.svg
275
+ [🖇️24-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_4.svg
276
+ [🏘️24-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_4.svg
277
+ [🚎24-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_4/actions/workflows/current.yml
278
+ [🚎24-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_4/actions/workflows/current.yml/badge.svg
279
+ [🖐24-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_4/actions/workflows/heads.yml
280
+ [🖐24-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_4/actions/workflows/heads.yml/badge.svg
281
+ [📗24-io]: https://github.com/rubocop-lts/rubocop-ruby2_4/issues
282
+ [📗24-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_4
283
+ [🚀24-ic]: https://github.com/rubocop-lts/rubocop-ruby2_4/issues?q=is%3Aissue+is%3Aclosed
284
+ [🚀24-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_4
285
+ [💄24-po]: https://github.com/rubocop-lts/rubocop-ruby2_4/pulls
286
+ [💄24-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_4
287
+ [👽24-pc]: https://github.com/rubocop-lts/rubocop-ruby2_4/pulls?q=is%3Apr+is%3Aclosed
288
+ [👽24-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_4
289
+ [⛳️24-g]: https://rubygems.org/gems/rubocop-ruby2_4
290
+ [⛳️24-gh]: https://github.com/rubocop-lts/rubocop-ruby2_4
291
+ [⛳️25-vi]: http://img.shields.io/gem/v/rubocop-ruby2_5.svg
292
+ [🖇️25-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_5.svg
293
+ [🏘️25-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_5.svg
294
+ [🚎25-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_5/actions/workflows/current.yml
295
+ [🚎25-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_5/actions/workflows/current.yml/badge.svg
296
+ [🖐25-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_5/actions/workflows/heads.yml
297
+ [🖐25-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_5/actions/workflows/heads.yml/badge.svg
298
+ [📗25-io]: https://github.com/rubocop-lts/rubocop-ruby2_5/issues
299
+ [📗25-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_5
300
+ [🚀25-ic]: https://github.com/rubocop-lts/rubocop-ruby2_5/issues?q=is%3Aissue+is%3Aclosed
301
+ [🚀25-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_5
302
+ [💄25-po]: https://github.com/rubocop-lts/rubocop-ruby2_5/pulls
303
+ [💄25-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_5
304
+ [👽25-pc]: https://github.com/rubocop-lts/rubocop-ruby2_5/pulls?q=is%3Apr+is%3Aclosed
305
+ [👽25-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_5
306
+ [⛳️25-g]: https://rubygems.org/gems/rubocop-ruby2_5
307
+ [⛳️25-gh]: https://github.com/rubocop-lts/rubocop-ruby2_5
308
+ [⛳️26-vi]: http://img.shields.io/gem/v/rubocop-ruby2_6.svg
309
+ [🖇️26-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_6.svg
310
+ [🏘️26-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_6.svg
311
+ [🚎26-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_6/actions/workflows/current.yml
312
+ [🚎26-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_6/actions/workflows/current.yml/badge.svg
313
+ [🖐26-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_6/actions/workflows/heads.yml
314
+ [🖐26-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_6/actions/workflows/heads.yml/badge.svg
315
+ [📗26-io]: https://github.com/rubocop-lts/rubocop-ruby2_6/issues
316
+ [📗26-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_6
317
+ [🚀26-ic]: https://github.com/rubocop-lts/rubocop-ruby2_6/issues?q=is%3Aissue+is%3Aclosed
318
+ [🚀26-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_6
319
+ [💄26-po]: https://github.com/rubocop-lts/rubocop-ruby2_6/pulls
320
+ [💄26-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_6
321
+ [👽26-pc]: https://github.com/rubocop-lts/rubocop-ruby2_6/pulls?q=is%3Apr+is%3Aclosed
322
+ [👽26-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_6
323
+ [⛳️26-g]: https://rubygems.org/gems/rubocop-ruby2_6
324
+ [⛳️26-gh]: https://github.com/rubocop-lts/rubocop-ruby2_6
325
+ [⛳️27-vi]: http://img.shields.io/gem/v/rubocop-ruby2_7.svg
326
+ [🖇️27-dti]: https://img.shields.io/gem/dt/rubocop-ruby2_7.svg
327
+ [🏘️27-rti]: https://img.shields.io/gem/rt/rubocop-ruby2_7.svg
328
+ [🚎27-cwf]: https://github.com/rubocop-lts/rubocop-ruby2_7/actions/workflows/current.yml
329
+ [🚎27-cwfi]: https://github.com/rubocop-lts/rubocop-ruby2_7/actions/workflows/current.yml/badge.svg
330
+ [🖐27-hwf]: https://github.com/rubocop-lts/rubocop-ruby2_7/actions/workflows/heads.yml
331
+ [🖐27-hwfi]: https://github.com/rubocop-lts/rubocop-ruby2_7/actions/workflows/heads.yml/badge.svg
332
+ [📗27-io]: https://github.com/rubocop-lts/rubocop-ruby2_7/issues
333
+ [📗27-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby2_7
334
+ [🚀27-ic]: https://github.com/rubocop-lts/rubocop-ruby2_7/issues?q=is%3Aissue+is%3Aclosed
335
+ [🚀27-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby2_7
336
+ [💄27-po]: https://github.com/rubocop-lts/rubocop-ruby2_7/pulls
337
+ [💄27-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby2_7
338
+ [👽27-pc]: https://github.com/rubocop-lts/rubocop-ruby2_7/pulls?q=is%3Apr+is%3Aclosed
339
+ [👽27-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby2_7
340
+ [⛳️27-g]: https://rubygems.org/gems/rubocop-ruby2_7
341
+ [⛳️27-gh]: https://github.com/rubocop-lts/rubocop-ruby2_7
342
+ [⛳️30-vi]: http://img.shields.io/gem/v/rubocop-ruby3_0.svg
343
+ [🖇️30-dti]: https://img.shields.io/gem/dt/rubocop-ruby3_0.svg
344
+ [🏘️30-rti]: https://img.shields.io/gem/rt/rubocop-ruby3_0.svg
345
+ [🚎30-cwf]: https://github.com/rubocop-lts/rubocop-ruby3_0/actions/workflows/current.yml
346
+ [🚎30-cwfi]: https://github.com/rubocop-lts/rubocop-ruby3_0/actions/workflows/current.yml/badge.svg
347
+ [🖐30-hwf]: https://github.com/rubocop-lts/rubocop-ruby3_0/actions/workflows/heads.yml
348
+ [🖐30-hwfi]: https://github.com/rubocop-lts/rubocop-ruby3_0/actions/workflows/heads.yml/badge.svg
349
+ [📗30-io]: https://github.com/rubocop-lts/rubocop-ruby3_0/issues
350
+ [📗30-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby3_0
351
+ [🚀30-ic]: https://github.com/rubocop-lts/rubocop-ruby3_0/issues?q=is%3Aissue+is%3Aclosed
352
+ [🚀30-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby3_0
353
+ [💄30-po]: https://github.com/rubocop-lts/rubocop-ruby3_0/pulls
354
+ [💄30-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby3_0
355
+ [👽30-pc]: https://github.com/rubocop-lts/rubocop-ruby3_0/pulls?q=is%3Apr+is%3Aclosed
356
+ [👽30-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby3_0
357
+ [⛳️30-g]: https://rubygems.org/gems/rubocop-ruby3_0
358
+ [⛳️30-gh]: https://github.com/rubocop-lts/rubocop-ruby3_0
359
+ [⛳️31-vi]: http://img.shields.io/gem/v/rubocop-ruby3_1.svg
360
+ [🖇️31-dti]: https://img.shields.io/gem/dt/rubocop-ruby3_1.svg
361
+ [🏘️31-rti]: https://img.shields.io/gem/rt/rubocop-ruby3_1.svg
362
+ [🚎31-cwf]: https://github.com/rubocop-lts/rubocop-ruby3_1/actions/workflows/current.yml
363
+ [🚎31-cwfi]: https://github.com/rubocop-lts/rubocop-ruby3_1/actions/workflows/current.yml/badge.svg
364
+ [🖐31-hwf]: https://github.com/rubocop-lts/rubocop-ruby3_1/actions/workflows/heads.yml
365
+ [🖐31-hwfi]: https://github.com/rubocop-lts/rubocop-ruby3_1/actions/workflows/heads.yml/badge.svg
366
+ [📗31-io]: https://github.com/rubocop-lts/rubocop-ruby3_1/issues
367
+ [📗31-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby3_1
368
+ [🚀31-ic]: https://github.com/rubocop-lts/rubocop-ruby3_1/issues?q=is%3Aissue+is%3Aclosed
369
+ [🚀31-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby3_1
370
+ [💄31-po]: https://github.com/rubocop-lts/rubocop-ruby3_1/pulls
371
+ [💄31-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby3_1
372
+ [👽31-pc]: https://github.com/rubocop-lts/rubocop-ruby3_1/pulls?q=is%3Apr+is%3Aclosed
373
+ [👽31-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby3_1
374
+ [⛳️31-g]: https://rubygems.org/gems/rubocop-ruby3_1
375
+ [⛳️31-gh]: https://github.com/rubocop-lts/rubocop-ruby3_1
376
+ [⛳️32-vi]: http://img.shields.io/gem/v/rubocop-ruby3_2.svg
377
+ [🖇️32-dti]: https://img.shields.io/gem/dt/rubocop-ruby3_2.svg
378
+ [🏘️32-rti]: https://img.shields.io/gem/rt/rubocop-ruby3_2.svg
379
+ [🚎32-cwf]: https://github.com/rubocop-lts/rubocop-ruby3_2/actions/workflows/current.yml
380
+ [🚎32-cwfi]: https://github.com/rubocop-lts/rubocop-ruby3_2/actions/workflows/current.yml/badge.svg
381
+ [🖐32-hwf]: https://github.com/rubocop-lts/rubocop-ruby3_2/actions/workflows/heads.yml
382
+ [🖐32-hwfi]: https://github.com/rubocop-lts/rubocop-ruby3_2/actions/workflows/heads.yml/badge.svg
383
+ [📗32-io]: https://github.com/rubocop-lts/rubocop-ruby3_2/issues
384
+ [📗32-ioi]: https://img.shields.io/github/issues-raw/rubocop-lts/rubocop-ruby3_2
385
+ [🚀32-ic]: https://github.com/rubocop-lts/rubocop-ruby3_2/issues?q=is%3Aissue+is%3Aclosed
386
+ [🚀32-ici]: https://img.shields.io/github/issues-closed-raw/rubocop-lts/rubocop-ruby3_2
387
+ [💄32-po]: https://github.com/rubocop-lts/rubocop-ruby3_2/pulls
388
+ [💄32-poi]: https://img.shields.io/github/issues-pr/rubocop-lts/rubocop-ruby3_2
389
+ [👽32-pc]: https://github.com/rubocop-lts/rubocop-ruby3_2/pulls?q=is%3Apr+is%3Aclosed
390
+ [👽32-pci]: https://img.shields.io/github/issues-pr-closed/rubocop-lts/rubocop-ruby3_2
391
+ [⛳️32-g]: https://rubygems.org/gems/rubocop-ruby3_2
392
+ [⛳️32-gh]: https://github.com/rubocop-lts/rubocop-ruby3_2
393
+
394
+ [copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
395
+
396
+ [gh_discussions]: https://github.com/rubocop-lts/rubocop-lts/discussions
397
+
398
+ [conduct]: https://github.com/rubocop-lts/rubocop-lts/blob/main/CODE_OF_CONDUCT.md
399
+
400
+ [contributing]: https://github.com/rubocop-lts/rubocop-lts/blob/main/CONTRIBUTING.md
401
+
402
+ [security]: https://github.com/rubocop-lts/rubocop-lts/blob/main/SECURITY.md
403
+
404
+ [license]: https://github.com/rubocop-lts/rubocop-lts/blob/main/LICENSE.txt
405
+
406
+ [license-ref]: https://opensource.org/licenses/MIT
407
+
408
+ [semver]: http://semver.org/
409
+
410
+ [pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
411
+
412
+ [railsbling]: http://www.railsbling.com
413
+
414
+ [peterboling]: http://www.peterboling.com
415
+
416
+ [aboutme]: https://about.me/peter.boling
417
+
418
+ [angelme]: https://angel.co/peter-boling
419
+
420
+ [coderme]:http://coderwall.com/pboling
421
+
422
+ [followme-img]: https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow
423
+
424
+ [tweetme]: http://twitter.com/galtzo
425
+
426
+ [documentation]: https://rubydoc.info/github/rubocop-lts/rubocop-lts/main
427
+
428
+ [source]: https://github.com/rubocop-lts/rubocop-lts/
429
+
430
+ [actions]: https://github.com/rubocop-lts/rubocop-lts/actions
431
+
432
+ [issues]: https://github.com/rubocop-lts/rubocop-lts/issues
433
+
434
+ [climate_maintainability]: https://codeclimate.com/github/rubocop-lts/rubocop-lts/maintainability
435
+
436
+ [code_triage]: https://www.codetriage.com/rubocop-lts/rubocop-lts
437
+
438
+ [blogpage]: http://www.railsbling.com/tags/rubocop-lts/
439
+
440
+ [rubygems]: https://rubygems.org/gems/rubocop-lts
441
+
442
+ [chat]: https://gitter.im/rubocop-lts/rubocop-lts?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
443
+
444
+ [maintenancee_policy]: https://guides.rubyonrails.org/maintenance_policy.html#security-issues
445
+
446
+ [liberapay_donate]: https://liberapay.com/pboling/donate
447
+
448
+ [gh_sponsors]: https://github.com/sponsors/pboling
data/SECURITY.md ADDED
@@ -0,0 +1,41 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ Major even versions are supported.
6
+
7
+ Major odd versions are not supported, and no further odd major releases are planned.
8
+
9
+ | Version | Supported |
10
+ |-----------|-----------|
11
+ | 0.latest | ✅ |
12
+ | 1.latest | ❌ |
13
+ | 2.latest | ✅ |
14
+ | 3.latest | ❌ |
15
+ | 4.latest | ✅ |
16
+ | 5.latest | ❌ |
17
+ | 6.latest | ✅ |
18
+ | 7.latest | ❌ |
19
+ | 8.latest | ✅ |
20
+ | 9.latest | ❌ |
21
+ | 10.latest | ✅ |
22
+ | 11.latest | ❌ |
23
+ | 12.latest | ✅ |
24
+ | 13.latest | ❌ |
25
+ | 14.latest | ✅ |
26
+ | 15.latest | ❌ |
27
+ | 16.latest | ✅ |
28
+ | 17.latest | ❌ |
29
+ | 18.latest | ✅ |
30
+ | 19.latest | ❌ |
31
+ | 20.latest | ✅ |
32
+ | 21.latest | ❌ |
33
+ | 22.latest | ✅ |
34
+ | 23.latest | ❌ |
35
+ | 24.latest | ✅ |
36
+
37
+ ## Reporting a Vulnerability
38
+
39
+ Peter Boling is the primary maintainer of this gem. Please find a way
40
+ to [contact him directly](https://railsbling.com/contact) to report the issue. Include as much relevant information as
41
+ possible.
data/config/rails.yml ADDED
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/rails.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/rails_rspec.yml
data/config/rspec.yml ADDED
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/rspec.yml
data/config/ruby.yml ADDED
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/ruby.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/ruby_rspec.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/rubygem.yml
@@ -0,0 +1,2 @@
1
+ inherit_gem:
2
+ rubocop-ruby1_8: rubocop-lts/rubygem_rspec.yml
@@ -0,0 +1,10 @@
1
+ # encoding: utf-8
2
+ # frozen_string_literal: true
3
+
4
+ module Rubocop
5
+ module Lts
6
+ module Version
7
+ VERSION = "0.1.0"
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,18 @@
1
+ # encoding: utf-8
2
+ # frozen_string_literal: true
3
+
4
+ # external libs
5
+ require "version_gem"
6
+
7
+ require_relative "lts/version"
8
+
9
+ module Rubocop
10
+ module Lts
11
+ class Error < StandardError; end
12
+ # Your code goes here...
13
+ end
14
+ end
15
+
16
+ Rubocop::Lts::Version.class_eval do
17
+ extend VersionGem::Basic
18
+ end
data/rubocop-lts.yml ADDED
@@ -0,0 +1,15 @@
1
+ # Change the file you inherit if you:
2
+ # * use Rails,
3
+ # * are creating a RubyGem, or
4
+ # * don't use RSpec
5
+ # As follows:
6
+ # inherit_gem:
7
+ # # Pick one:
8
+ # # rubocop-lts: config/rails_rspec.yml # or config/rails.yml w/o rspec
9
+ # # rubocop-lts: config/ruby_rspec.yml # or config/ruby.yml w/o rspec
10
+ # # rubocop-lts: config/rubygem_rspec.yml # or config/rubygem.yml w/o rspec
11
+ # # Convention over configuration, hence loading this file just only Ruby and RSpec defaults:
12
+ # rubocop-lts: rubocop-lts.yml # for the ruby + rspec
13
+
14
+ inherit_from:
15
+ - config/ruby_rspec.yml
@@ -0,0 +1,8 @@
1
+ module Rubocop
2
+ module Lts
3
+ module Version
4
+ VERSION: String
5
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
6
+ end
7
+ end
8
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,164 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubocop-lts
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Peter Boling
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
14
+ ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
15
+ A2NvbTAeFw0yMjA5MTgyMzEyMzBaFw0yMzA5MTgyMzEyMzBaMEMxFTATBgNVBAMM
16
+ DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
17
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA2Dn1GM3W
18
+ 8K2/rvN1zz+06bQMcxD16ZKTihVwi7Pb1v3T98rM4Omnxohm3s+CwpDWGeiB9pj6
19
+ 0I/CTce0e4e3s8GKJSOrg93veImPSoH2PfsMsRsuB8wtqyiOCjLbF5o6S29x87r0
20
+ LA5EawH+Lh4xqrkkPjdffsmLk7TaCig/vlmNvnzxXKBdey/X/aEJZXzzBiWRfVdh
21
+ O1fmMbVKyieGv9HK7+pLotIoT08bjDv8NP6V7zZslwQRqW27bQc6cqC2LGIbTYO3
22
+ 3jt1kQxfMWmhOictS6SzG9VtKSrXf0L4Neq0Gh7CLBZBvJFWJYZPfb92YNITDbd8
23
+ emPOAQlXXNMN4mMXsEqtEhCPZRMnmwO+fOk/cC4AyglKi9lnQugCQoFV1XDMZST/
24
+ CYbzdQyadOdPDInTntG6V+Uw51d2QGXZ6PDDfrx9+toc/3sl5h68rCUGgE6Q3jPz
25
+ srinqmBsxv2vTpmd4FjmiAtEnwH5/ooLpQYL8UdAjEoeysxS3AwIh+5dAgMBAAGj
26
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQWU6D156a2cle+
27
+ lb5RBfvVXlxTwjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
28
+ A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
29
+ ggGBAJ4SqhPlgUiLYIrphGXIaxXScHyvx4kixuvdrwhI4VoQV2qXvO7R6ZjOXVwX
30
+ f/z84BWPiTZ8lzThPbt1UV/BGwkvLw9I4RjOdzvUz3J42j9Ly6q63isall07bo3F
31
+ QWe/OBvIMBF1IbjC3q5vKPg4rq8+TkNRJNoE86U2gfR+PkW3jYYs9uiy0GloHDCP
32
+ k5xgaj0vSL0Uy5mTOPdk3K6a/sUGZyYniWK05zdhIi956ynhfGaFO988FFdVw5Jq
33
+ LHtXfIpAU8F7ES04syZSslxOluw7VlcSKyRdVIr737J92ZTduppB4PRGSKRgBsWV
34
+ hXTahRE72Kyw53Q7FAuzF3v102WxAAQ7BuMjW+MyCUT75fwPm3W4ELPL8HYkNGE7
35
+ 2oA5CPghFitRnvYS3GNrDG+9bNiRMEskeaBYwZ9UgReBQIwGYVj7LZk3UhiAsn44
36
+ gwGrEXGQGDZ0NIgBcmvMOqlXjkGQwQvugKycJ024z89+fz2332vdZIKTrSxJrXGk
37
+ 4/bR9A==
38
+ -----END CERTIFICATE-----
39
+ date: 2023-05-22 00:00:00.000000000 Z
40
+ dependencies:
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-ruby1_8
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 1.0.5
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: '2'
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 1.0.5
58
+ - - "<"
59
+ - !ruby/object:Gem::Version
60
+ version: '2'
61
+ - !ruby/object:Gem::Dependency
62
+ name: version_gem
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 1.1.2
68
+ - - "<"
69
+ - !ruby/object:Gem::Version
70
+ version: '3'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: 1.1.2
78
+ - - "<"
79
+ - !ruby/object:Gem::Version
80
+ version: '3'
81
+ - !ruby/object:Gem::Dependency
82
+ name: rubocop-packaging
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '0.5'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "~>"
93
+ - !ruby/object:Gem::Version
94
+ version: '0.5'
95
+ - !ruby/object:Gem::Dependency
96
+ name: rubocop-rspec
97
+ requirement: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - "~>"
100
+ - !ruby/object:Gem::Version
101
+ version: '2.22'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '2.22'
109
+ description: Configure RuboCop + a bevy of friends to gradually lint Ruby code
110
+ email:
111
+ - peter.boling@gmail.com
112
+ executables: []
113
+ extensions: []
114
+ extra_rdoc_files: []
115
+ files:
116
+ - CHANGELOG.md
117
+ - CODE_OF_CONDUCT.md
118
+ - CONTRIBUTING.md
119
+ - LICENSE.txt
120
+ - README.md
121
+ - SECURITY.md
122
+ - config/rails.yml
123
+ - config/rails_rspec.yml
124
+ - config/rspec.yml
125
+ - config/ruby.yml
126
+ - config/ruby_rspec.yml
127
+ - config/rubygem.yml
128
+ - config/rubygem_rspec.yml
129
+ - lib/rubocop/lts.rb
130
+ - lib/rubocop/lts/version.rb
131
+ - rubocop-lts.yml
132
+ - sig/rubocop/lts.rbs
133
+ homepage: https://gitlab.com/rubocop-lts/rubocop-lts
134
+ licenses:
135
+ - MIT
136
+ metadata:
137
+ homepage_uri: https://gitlab.com/rubocop-lts/rubocop-lts
138
+ source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/tree/v0.1.0
139
+ changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/blob/v0.1.0/CHANGELOG.md
140
+ bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/issues
141
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/0.1.0
142
+ wiki_uri: https://gitlab.com/rubocop-lts/rubocop-lts/-/wiki
143
+ funding_uri: https://liberapay.com/pboling
144
+ rubygems_mfa_required: 'true'
145
+ post_install_message:
146
+ rdoc_options: []
147
+ require_paths:
148
+ - lib
149
+ required_ruby_version: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: '2.7'
154
+ required_rubygems_version: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ requirements: []
160
+ rubygems_version: 3.4.13
161
+ signing_key:
162
+ specification_version: 4
163
+ summary: 'Rules for Rubies: Rubocop + Standard + Betterlint + Shopify + Gradual'
164
+ test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1,2 @@
1
+ ���K�]��dZ����9�#D.@�ʾtf����uH���l ��"y�c�" ��ȇz+�q�]ٙ$̭�gyi��/�E��p��@��-���sU�|��^<�$8�}�5␕�NE"j�wS�qI��F�2=
2
+ j��������u۬%�T�@���1܄C�(�ޞ�i2/k�f���]����R�Y�v;+��I���/*�Mq�rJ