vinter 0.1.0 → 0.3.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 +4 -4
- data/LICENSE +13 -0
- data/README.md +4 -8
- data/lib/vinter/lexer.rb +125 -32
- data/lib/vinter/parser.rb +1078 -64
- data/lib/vinter.rb +1 -1
- metadata +4 -3
data/lib/vinter.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vinter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Bradbury
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A linter for the Vim9 script language, helping to identify issues and
|
14
14
|
enforce best practices
|
@@ -18,6 +18,7 @@ executables:
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
+
- LICENSE
|
21
22
|
- README.md
|
22
23
|
- bin/vinter
|
23
24
|
- lib/vinter.rb
|
@@ -47,5 +48,5 @@ requirements: []
|
|
47
48
|
rubygems_version: 3.5.22
|
48
49
|
signing_key:
|
49
50
|
specification_version: 4
|
50
|
-
summary: A linter for Vim9 script
|
51
|
+
summary: A linter for leagacy + Vim9 script
|
51
52
|
test_files: []
|