rubocop-rbs_inline 1.0.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.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +34 -0
- data/.vscode/extensions.json +6 -0
- data/.vscode/settings.json +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +40 -0
- data/Steepfile +11 -0
- data/config/default.yml +24 -0
- data/lib/rubocop/cop/rbs_inline_cops.rb +7 -0
- data/lib/rubocop/cop/style/rbs_inline/invalid_comment.rb +47 -0
- data/lib/rubocop/cop/style/rbs_inline/invalid_types.rb +71 -0
- data/lib/rubocop/cop/style/rbs_inline/keyword_separator.rb +46 -0
- data/lib/rubocop/cop/style/rbs_inline/parameters_separator.rb +47 -0
- data/lib/rubocop/cop/style/rbs_inline/unmatched_annotations.rb +139 -0
- data/lib/rubocop/rbs_inline/inject.rb +20 -0
- data/lib/rubocop/rbs_inline/version.rb +7 -0
- data/lib/rubocop/rbs_inline.rb +15 -0
- data/lib/rubocop-rbs_inline.rb +11 -0
- data/rbs_collection.lock.yaml +140 -0
- data/rbs_collection.yaml +18 -0
- data/sig/gems/parser/parser.rbs +13 -0
- data/sig/gems/rubocop/rubocop.rbs +29 -0
- data/sig/rubocop/cop/rbs_inline_cops.rbs +2 -0
- data/sig/rubocop/cop/style/rbs_inline/invalid_comment.rbs +34 -0
- data/sig/rubocop/cop/style/rbs_inline/invalid_types.rbs +39 -0
- data/sig/rubocop/cop/style/rbs_inline/keyword_separator.rbs +35 -0
- data/sig/rubocop/cop/style/rbs_inline/parameters_separator.rbs +34 -0
- data/sig/rubocop/cop/style/rbs_inline/unmatched_annotations.rbs +54 -0
- data/sig/rubocop/rbs_inline/inject.rbs +13 -0
- data/sig/rubocop/rbs_inline/version.rbs +7 -0
- data/sig/rubocop/rbs_inline.rbs +15 -0
- data/sig/rubocop-rbs_inline.rbs +2 -0
- metadata +109 -0
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubocop-rbs_inline
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Takeshi KOMIYA
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-10-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rbs-inline
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rubocop
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: rubocop extension to check RBS annotation comments
|
42
|
+
email:
|
43
|
+
- i.tkomiya@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".rspec"
|
49
|
+
- ".rubocop.yml"
|
50
|
+
- ".vscode/extensions.json"
|
51
|
+
- ".vscode/settings.json"
|
52
|
+
- CODE_OF_CONDUCT.md
|
53
|
+
- LICENSE.txt
|
54
|
+
- README.md
|
55
|
+
- Rakefile
|
56
|
+
- Steepfile
|
57
|
+
- config/default.yml
|
58
|
+
- lib/rubocop-rbs_inline.rb
|
59
|
+
- lib/rubocop/cop/rbs_inline_cops.rb
|
60
|
+
- lib/rubocop/cop/style/rbs_inline/invalid_comment.rb
|
61
|
+
- lib/rubocop/cop/style/rbs_inline/invalid_types.rb
|
62
|
+
- lib/rubocop/cop/style/rbs_inline/keyword_separator.rb
|
63
|
+
- lib/rubocop/cop/style/rbs_inline/parameters_separator.rb
|
64
|
+
- lib/rubocop/cop/style/rbs_inline/unmatched_annotations.rb
|
65
|
+
- lib/rubocop/rbs_inline.rb
|
66
|
+
- lib/rubocop/rbs_inline/inject.rb
|
67
|
+
- lib/rubocop/rbs_inline/version.rb
|
68
|
+
- rbs_collection.lock.yaml
|
69
|
+
- rbs_collection.yaml
|
70
|
+
- sig/gems/parser/parser.rbs
|
71
|
+
- sig/gems/rubocop/rubocop.rbs
|
72
|
+
- sig/rubocop-rbs_inline.rbs
|
73
|
+
- sig/rubocop/cop/rbs_inline_cops.rbs
|
74
|
+
- sig/rubocop/cop/style/rbs_inline/invalid_comment.rbs
|
75
|
+
- sig/rubocop/cop/style/rbs_inline/invalid_types.rbs
|
76
|
+
- sig/rubocop/cop/style/rbs_inline/keyword_separator.rbs
|
77
|
+
- sig/rubocop/cop/style/rbs_inline/parameters_separator.rbs
|
78
|
+
- sig/rubocop/cop/style/rbs_inline/unmatched_annotations.rbs
|
79
|
+
- sig/rubocop/rbs_inline.rbs
|
80
|
+
- sig/rubocop/rbs_inline/inject.rbs
|
81
|
+
- sig/rubocop/rbs_inline/version.rbs
|
82
|
+
homepage: https://github.com/tk0miya/rubocop-rbs_inline
|
83
|
+
licenses:
|
84
|
+
- MIT
|
85
|
+
metadata:
|
86
|
+
homepage_uri: https://github.com/tk0miya/rubocop-rbs_inline
|
87
|
+
source_code_uri: https://github.com/tk0miya/rubocop-rbs_inline
|
88
|
+
changelog_uri: https://github.com/tk0miya/rubocop-rbs_inline
|
89
|
+
rubygems_mfa_required: 'true'
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: 3.1.0
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubygems_version: 3.5.16
|
106
|
+
signing_key:
|
107
|
+
specification_version: 4
|
108
|
+
summary: rubocop extension to check RBS annotation comments
|
109
|
+
test_files: []
|