pronto-stylelint 0.8.2 → 0.10.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 +5 -5
- data/README.md +9 -6
- data/lib/pronto/stylelint.rb +21 -10
- data/lib/pronto/stylelint/version.rb +1 -1
- metadata +40 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ed4f93468ad34cfbe7b933ad8497795430601b76461387cd3b412bc1c4080fe8
|
4
|
+
data.tar.gz: e6c413926171309786afa3d750eccc47217355dd9503661b2de78f66c5c71669
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b54dca362245ca45d139415afeed46d9a3d5c325ee9217e8f0fb61c1ecc267e7aa1ded98e962cc15c6c02cff4b903ad8560cc3d5bba534cf14bef8b799c35a4
|
7
|
+
data.tar.gz: 9c9583201f8a43ae48b4ec8135d20696b0d22ff54ee6c869b8e48c28c7f45b422b74eeaf23d72b29b04f54f39b5e5edaa6e7316da390e211d40ef5a72f35893d
|
data/README.md
CHANGED
@@ -4,9 +4,8 @@
|
|
4
4
|
[](https://travis-ci.org/kevinjalbert/pronto-stylelint)
|
5
5
|
[](https://codeclimate.com/github/kevinjalbert/pronto-stylelint)
|
6
6
|
[](https://codeclimate.com/github/kevinjalbert/pronto-stylelint/coverage)
|
7
|
-
[](https://gemnasium.com/github.com/kevinjalbert/pronto-stylelint)
|
8
7
|
|
9
|
-
Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/
|
8
|
+
Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/prontolabs/pronto)
|
10
9
|
|
11
10
|
Uses official stylelint executable installed by `npm`.
|
12
11
|
|
@@ -26,13 +25,17 @@ pronto-stylelint can be configured by placing a `.pronto_stylelint.yml` inside t
|
|
26
25
|
|
27
26
|
Following options are available:
|
28
27
|
|
29
|
-
| Option | Meaning
|
30
|
-
| -------------------- |
|
31
|
-
| stylelint_executable | stylelint executable to call.
|
28
|
+
| Option | Meaning | Default |
|
29
|
+
| -------------------- | ---------------------------------------------------------------------------------------- | ----------------------------------------- |
|
30
|
+
| stylelint_executable | stylelint executable to call. | `stylelint` (calls `stylelint` in `PATH`) |
|
31
|
+
| files_to_lint | What files to lint. Absolute path of offending file will be matched against this Regexp. | `\.(c\|sc\|sa\|le)ss$` |
|
32
|
+
| cli_options | Options to pass to the CLI. | `-f json` |
|
32
33
|
|
33
|
-
Example configuration to call custom stylelint executable:
|
34
|
+
Example configuration to call custom stylelint executable and specify custom options:
|
34
35
|
|
35
36
|
```yaml
|
36
37
|
# .pronto_stylelint.yml
|
37
38
|
stylelint_executable: '/my/custom/node/path/.bin/stylelint'
|
39
|
+
files_to_lint: '\.(c|sc)ss$'
|
40
|
+
cli_options: '--config /custom/stylelintrc'
|
38
41
|
```
|
data/lib/pronto/stylelint.rb
CHANGED
@@ -4,20 +4,33 @@ require 'shellwords'
|
|
4
4
|
module Pronto
|
5
5
|
class Stylelint < Runner
|
6
6
|
CONFIG_FILE = '.pronto_stylelint.yml'.freeze
|
7
|
-
CONFIG_KEYS = %w(stylelint_executable).freeze
|
7
|
+
CONFIG_KEYS = %w(stylelint_executable files_to_lint cli_options).freeze
|
8
8
|
|
9
|
-
attr_writer :stylelint_executable
|
9
|
+
attr_writer :stylelint_executable, :cli_options
|
10
|
+
|
11
|
+
def initialize(patches, commit = nil)
|
12
|
+
super(patches, commit)
|
13
|
+
read_config
|
14
|
+
end
|
10
15
|
|
11
16
|
def stylelint_executable
|
12
17
|
@stylelint_executable || 'stylelint'.freeze
|
13
18
|
end
|
14
19
|
|
20
|
+
def cli_options
|
21
|
+
"#{@cli_options} -f json".strip
|
22
|
+
end
|
23
|
+
|
15
24
|
def files_to_lint
|
16
|
-
/\.(c|sc|sa|le)ss$/.freeze
|
25
|
+
@files_to_lint || /\.(c|sc|sa|le)ss$/.freeze
|
26
|
+
end
|
27
|
+
|
28
|
+
def files_to_lint=(regexp)
|
29
|
+
@files_to_lint = regexp.is_a?(Regexp) ? regexp : Regexp.new(regexp)
|
17
30
|
end
|
18
31
|
|
19
32
|
def read_config
|
20
|
-
config_file = File.join(
|
33
|
+
config_file = File.join(git_repo_path, CONFIG_FILE)
|
21
34
|
return unless File.exist?(config_file)
|
22
35
|
config = YAML.load_file(config_file)
|
23
36
|
|
@@ -30,8 +43,6 @@ module Pronto
|
|
30
43
|
def run
|
31
44
|
return [] if !@patches || @patches.count.zero?
|
32
45
|
|
33
|
-
read_config
|
34
|
-
|
35
46
|
@patches
|
36
47
|
.select { |patch| patch.additions > 0 }
|
37
48
|
.select { |patch| style_file?(patch.new_file_full_path) }
|
@@ -41,8 +52,8 @@ module Pronto
|
|
41
52
|
|
42
53
|
private
|
43
54
|
|
44
|
-
def
|
45
|
-
@
|
55
|
+
def git_repo_path
|
56
|
+
@git_repo_path ||= Rugged::Repository.discover(File.expand_path(Dir.pwd)).workdir
|
46
57
|
end
|
47
58
|
|
48
59
|
def inspect(patch)
|
@@ -68,10 +79,10 @@ module Pronto
|
|
68
79
|
end
|
69
80
|
|
70
81
|
def run_stylelint(patch)
|
71
|
-
Dir.chdir(
|
82
|
+
Dir.chdir(git_repo_path) do
|
72
83
|
escaped_file_path = Shellwords.escape(patch.new_file_full_path.to_s)
|
73
84
|
JSON.parse(
|
74
|
-
`#{stylelint_executable} #{escaped_file_path}
|
85
|
+
`#{stylelint_executable} #{escaped_file_path} #{cli_options}`
|
75
86
|
)
|
76
87
|
end
|
77
88
|
end
|
metadata
CHANGED
@@ -1,43 +1,69 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pronto-stylelint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Jalbert
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pronto
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.10'
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
22
|
+
version: '0.12'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.10'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0.12'
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rugged
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.24'
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '2.0'
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.24'
|
50
|
+
- - "<"
|
25
51
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0
|
52
|
+
version: '2.0'
|
27
53
|
- !ruby/object:Gem::Dependency
|
28
54
|
name: rake
|
29
55
|
requirement: !ruby/object:Gem::Requirement
|
30
56
|
requirements:
|
31
57
|
- - "~>"
|
32
58
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
59
|
+
version: '13.0'
|
34
60
|
type: :development
|
35
61
|
prerelease: false
|
36
62
|
version_requirements: !ruby/object:Gem::Requirement
|
37
63
|
requirements:
|
38
64
|
- - "~>"
|
39
65
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
66
|
+
version: '13.0'
|
41
67
|
- !ruby/object:Gem::Dependency
|
42
68
|
name: rspec
|
43
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,7 +78,7 @@ dependencies:
|
|
52
78
|
- - "~>"
|
53
79
|
- !ruby/object:Gem::Version
|
54
80
|
version: '3.4'
|
55
|
-
description:
|
81
|
+
description:
|
56
82
|
email: kevin.j.jalbert@gmail.com
|
57
83
|
executables: []
|
58
84
|
extensions: []
|
@@ -68,7 +94,7 @@ homepage: https://github.com/kevinjalbert/pronto-stylelint
|
|
68
94
|
licenses:
|
69
95
|
- MIT
|
70
96
|
metadata: {}
|
71
|
-
post_install_message:
|
97
|
+
post_install_message:
|
72
98
|
rdoc_options: []
|
73
99
|
require_paths:
|
74
100
|
- lib
|
@@ -76,7 +102,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
102
|
requirements:
|
77
103
|
- - ">="
|
78
104
|
- !ruby/object:Gem::Version
|
79
|
-
version: 2.
|
105
|
+
version: 2.3.0
|
80
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
107
|
requirements:
|
82
108
|
- - ">="
|
@@ -84,9 +110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
110
|
version: '0'
|
85
111
|
requirements:
|
86
112
|
- stylelint (in PATH)
|
87
|
-
|
88
|
-
|
89
|
-
signing_key:
|
113
|
+
rubygems_version: 3.1.4
|
114
|
+
signing_key:
|
90
115
|
specification_version: 4
|
91
116
|
summary: Pronto runner for stylelint, the mighty, modern CSS linter.
|
92
117
|
test_files: []
|