goodcheck 2.5.1 → 2.5.2
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/.github/dependabot.yml +18 -0
- data/.github/workflows/release.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/docusaurus/website/versions.json +1 -0
- data/docusaurus/website/yarn.lock +1175 -1377
- data/lib/goodcheck/buffer.rb +4 -2
- data/lib/goodcheck/version.rb +1 -1
- metadata +6 -5
data/lib/goodcheck/buffer.rb
CHANGED
|
@@ -8,7 +8,8 @@ module Goodcheck
|
|
|
8
8
|
/# goodcheck-disable-line$/, # Ruby, Python, PHP, ...
|
|
9
9
|
/-- goodcheck-disable-line$/, # Haskel, SQL, ...
|
|
10
10
|
/<!-- goodcheck-disable-line -->$/, # HTML, Markdown, ...
|
|
11
|
-
|
|
11
|
+
/\/\* goodcheck-disable-line \*\/$/, # CSS, SCSS,
|
|
12
|
+
/\{\s*\/\* goodcheck-disable-line \*\/\s*\}$/, # JSX, ...
|
|
12
13
|
/<%# goodcheck-disable-line %>$/, # ERB, ...
|
|
13
14
|
/' goodcheck-disable-line$/, # VB
|
|
14
15
|
].freeze
|
|
@@ -18,7 +19,8 @@ module Goodcheck
|
|
|
18
19
|
/# goodcheck-disable-next-line$/, # Ruby, Python, PHP, ...
|
|
19
20
|
/-- goodcheck-disable-next-line$/, # Haskel, SQL, ...
|
|
20
21
|
/<!-- goodcheck-disable-next-line -->$/, # HTML, Markdown, ...
|
|
21
|
-
|
|
22
|
+
/\/\* goodcheck-disable-next-line \*\/$/, # CSS, SCSS,
|
|
23
|
+
/\{\s*\/\* goodcheck-disable-next-line \*\/\s*\}$/, # JSX, ...
|
|
22
24
|
/<%# goodcheck-disable-next-line %>$/, # ERB, ...
|
|
23
25
|
/' goodcheck-disable-next-line$/, # VB
|
|
24
26
|
].freeze
|
data/lib/goodcheck/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: goodcheck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -148,6 +148,7 @@ executables:
|
|
|
148
148
|
extensions: []
|
|
149
149
|
extra_rdoc_files: []
|
|
150
150
|
files:
|
|
151
|
+
- ".github/dependabot.yml"
|
|
151
152
|
- ".github/workflows/release.yml"
|
|
152
153
|
- ".github/workflows/test.yml"
|
|
153
154
|
- ".gitignore"
|
|
@@ -231,7 +232,7 @@ homepage: https://github.com/sider/goodcheck
|
|
|
231
232
|
licenses:
|
|
232
233
|
- MIT
|
|
233
234
|
metadata: {}
|
|
234
|
-
post_install_message:
|
|
235
|
+
post_install_message:
|
|
235
236
|
rdoc_options: []
|
|
236
237
|
require_paths:
|
|
237
238
|
- lib
|
|
@@ -247,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
248
|
version: '0'
|
|
248
249
|
requirements: []
|
|
249
250
|
rubygems_version: 3.1.2
|
|
250
|
-
signing_key:
|
|
251
|
+
signing_key:
|
|
251
252
|
specification_version: 4
|
|
252
253
|
summary: Regexp based customizable linter
|
|
253
254
|
test_files: []
|