pronto-stylelint 0.10.3 → 0.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5ad38e5da7c10bbef01da03be23e6ead8c5431b1b65c541ebde43c8674163c0
4
- data.tar.gz: a4202206e230e6bd161afa0484fb89f00e324c6bc8fa154174293008ed9ca97a
3
+ metadata.gz: 72aadfab27603a70d2693342dd21de34d2029d2dde321ff65813375f6d2ff06d
4
+ data.tar.gz: 965e9c5d044b55e4895812025d4482f63b1db1d71e7e51db2f6cc56cbbaadfaa
5
5
  SHA512:
6
- metadata.gz: 778c62a73c78c2774029a74b68c774258bd16d3504861970a1b79c98f11150c1a01bd3eee1bc6b504e933307aac151e9599ec784af9b24e9a25efd6933bf189b
7
- data.tar.gz: 138b5c5af183660f358106edbe24b9e4bc62e0767c34255750fb06b8388449d06e328eb9b3db9789ef11c834d4e0c770d3f134c8cc3d071456bd6aa00cad0756
6
+ metadata.gz: 62ea066e712ea0c8632b2d9502481e6c9e2dc11e23b72f4a2e4e9c01e803fa87b92d27e3fe83731613f2597ae301f035b3f1e2420008987b4c0b50d697a91652
7
+ data.tar.gz: fe4cac1fc9d5a28963fac3739141797f7b01ad9a3d757ae816c29972f74b53624bd2e2fb5ad3c4d11a98c933647648e3e5e9533e37b659a1403a1230aa5f5a44
data/README.md CHANGED
@@ -7,13 +7,13 @@
7
7
 
8
8
  Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/prontolabs/pronto)
9
9
 
10
- Uses official stylelint executable installed by `npm`.
10
+ Uses the official stylelint executable installed by `npm`.
11
11
 
12
12
  Heavily inspired by [doits/pronto-eslint_npm](https://github.com/doits/pronto-eslint_npm).
13
13
 
14
14
  ## Prerequisites
15
15
 
16
- You'll need to install [stylelint by yourself with npm](http://stylelint.io/user-guide/cli/). If `stylelint` is in your `PATH`, everything will simply work, otherwise you have to provide pronto-stylelint your custom executable path (see [below](#configuration-of-stylelint)).
16
+ You'll need to install [stylelint by yourself with npm](http://stylelint.io/user-guide/cli/). If `stylelint` is in your `PATH`, everything will simply work, otherwise, you have to provide pronto-stylelint your custom executable path (see [below](#configuration-of-stylelint)).
17
17
 
18
18
  ## Configuration of stylelint
19
19
 
@@ -21,9 +21,9 @@ Configuring stylelint via [.stylelintrc and consorts](http://stylelint.io/user-g
21
21
 
22
22
  ## Configuration of pronto-stylelint
23
23
 
24
- pronto-stylelint can be configured by placing a `.pronto_stylelint.yml` inside the directory where pronto is run.
24
+ pronto-stylelint can be configured by adding to the [pronto configuration file](https://github.com/prontolabs/pronto?tab=readme-ov-file#configuration) `.pronto.yml`.
25
25
 
26
- Following options are available:
26
+ The following options are available:
27
27
 
28
28
  | Option | Meaning | Default |
29
29
  | -------------------- | ---------------------------------------------------------------------------------------- | ----------------------------------------- |
@@ -34,8 +34,9 @@ Following options are available:
34
34
  Example configuration to call custom stylelint executable and specify custom options:
35
35
 
36
36
  ```yaml
37
- # .pronto_stylelint.yml
38
- stylelint_executable: '/my/custom/node/path/.bin/stylelint'
39
- files_to_lint: '\.(c|sc)ss$'
40
- cli_options: '--config /custom/stylelintrc'
37
+ # .pronto.yml
38
+ stylelint:
39
+ stylelint_executable: '/my/custom/node/path/.bin/stylelint'
40
+ files_to_lint: '\.(c|sc)ss$'
41
+ cli_options: '--config /custom/stylelintrc'
41
42
  ```
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'pronto'
4
+
5
+ module Pronto
6
+ class Stylelint < Runner
7
+ class Config
8
+ EXECUTABLE_DEFAULT = 'stylelint'
9
+ FILES_TO_LINT_DEFAULT = /\.(c|sc|sa|le)ss$/.freeze
10
+
11
+ def stylelint_executable
12
+ stylelint_config['stylelint_executable'] || EXECUTABLE_DEFAULT
13
+ end
14
+
15
+ def cli_options
16
+ "#{stylelint_config['cli_options']} -f json".strip
17
+ end
18
+
19
+ def files_to_lint
20
+ config_files_to_lint || FILES_TO_LINT_DEFAULT
21
+ end
22
+
23
+ def git_repo_path
24
+ @git_repo_path ||= Rugged::Repository.discover(File.expand_path(Dir.pwd)).workdir
25
+ end
26
+
27
+ private
28
+
29
+ def config_files_to_lint
30
+ return unless stylelint_config['files_to_lint']
31
+
32
+ if stylelint_config['files_to_lint'].is_a?(Regexp)
33
+ stylelint_config['files_to_lint']
34
+ else
35
+ Regexp.new(stylelint_config['files_to_lint'])
36
+ end
37
+ end
38
+
39
+ def stylelint_config
40
+ @stylelint_config ||= Pronto::ConfigFile.new.to_h['stylelint'] || {}
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'pronto'
4
+ require 'shellwords'
5
+ require 'open3'
6
+
7
+ module Pronto
8
+ class Stylelint < Runner
9
+ class Linter
10
+ extend Forwardable
11
+
12
+ attr_reader :stylelint_config
13
+
14
+ def_delegators(
15
+ :stylelint_config,
16
+ :stylelint_executable,
17
+ :cli_options,
18
+ :git_repo_path
19
+ )
20
+
21
+ private :stylelint_executable, :cli_options, :git_repo_path
22
+
23
+ STYLELINT_FAILURE = 'Stylelint failed to run'
24
+ STATUS_CODES = {
25
+ 0 => :success,
26
+ 1 => :fatal_error,
27
+ 2 => :lint_problem,
28
+ 64 => :invalid_cli_usage,
29
+ 78 => :invalid_configuration_file
30
+ }.freeze
31
+
32
+ def initialize(patch, stylelint_config)
33
+ @patch = patch
34
+ @stylelint_config = stylelint_config
35
+ @stylint_major_version = nil
36
+ end
37
+
38
+ def run
39
+ Dir.chdir(git_repo_path) do
40
+ Open3.popen3(cli_command) do |_stdin, stdout, stderr, thread|
41
+ JSON.parse(
42
+ case thread_status(thread)
43
+ when :success, :lint_problem
44
+ out = stdout.read
45
+ out.empty? ? stderr.read : out
46
+ else
47
+ puts "#{STYLELINT_FAILURE} - #{thread_status(thread)}:\n#{stderr.read}"
48
+ '[]'
49
+ end
50
+ )
51
+ end
52
+ end
53
+ end
54
+
55
+ private
56
+
57
+ def cli_command
58
+ "#{stylelint_executable} #{escaped_file_path} #{cli_options}"
59
+ end
60
+
61
+ def escaped_file_path
62
+ Shellwords.escape(@patch.new_file_full_path.to_s)
63
+ end
64
+
65
+ # Status codes:
66
+ # https://stylelint.io/user-guide/cli/#exit-codes
67
+ def thread_status(thread)
68
+ STATUS_CODES[thread.value.exitstatus] || :unknown
69
+ end
70
+ end
71
+ end
72
+ end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Pronto
2
4
  module StylelintVersion
3
- VERSION = '0.10.3'.freeze
5
+ VERSION = '0.11.0'
4
6
  end
5
7
  end
@@ -1,71 +1,47 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pronto'
2
4
  require 'shellwords'
3
5
  require 'open3'
6
+ require 'pronto/stylelint/config'
7
+ require 'pronto/stylelint/linter'
4
8
 
5
9
  module Pronto
6
10
  class Stylelint < Runner
7
- CONFIG_FILE = '.pronto_stylelint.yml'.freeze
8
- CONFIG_KEYS = %w(stylelint_executable files_to_lint cli_options).freeze
9
-
10
- attr_writer :stylelint_executable, :cli_options
11
-
12
- def initialize(patches, commit = nil)
13
- super(patches, commit)
14
- read_config
15
- end
11
+ extend Forwardable
16
12
 
17
- def stylelint_executable
18
- @stylelint_executable || 'stylelint'.freeze
19
- end
13
+ attr_reader :stylelint_config
20
14
 
21
- def cli_options
22
- "#{@cli_options} -f json".strip
23
- end
15
+ def_delegators(
16
+ :stylelint_config,
17
+ :files_to_lint
18
+ )
19
+ private :files_to_lint
24
20
 
25
- def files_to_lint
26
- @files_to_lint || /\.(c|sc|sa|le)ss$/.freeze
27
- end
28
-
29
- def files_to_lint=(regexp)
30
- @files_to_lint = regexp.is_a?(Regexp) ? regexp : Regexp.new(regexp)
31
- end
32
-
33
- def read_config
34
- config_file = File.join(git_repo_path, CONFIG_FILE)
35
- return unless File.exist?(config_file)
36
- config = YAML.load_file(config_file)
21
+ def initialize(patches, commit = nil)
22
+ super
37
23
 
38
- CONFIG_KEYS.each do |config_key|
39
- next unless config[config_key]
40
- send("#{config_key}=", config[config_key])
41
- end
24
+ @stylelint_config ||= Pronto::Stylelint::Config.new
42
25
  end
43
26
 
44
27
  def run
45
28
  return [] if !@patches || @patches.count.zero?
46
29
 
47
30
  @patches
48
- .select { |patch| patch.additions > 0 }
49
- .select { |patch| style_file?(patch.new_file_full_path) }
50
- .map { |patch| inspect(patch) }
51
- .flatten.compact
31
+ .select { |patch| patch.additions.positive? && style_file?(patch.new_file_full_path) }
32
+ .flat_map { |patch| inspect(patch) }
33
+ .compact
52
34
  end
53
35
 
54
36
  private
55
37
 
56
- def git_repo_path
57
- @git_repo_path ||= Rugged::Repository.discover(File.expand_path(Dir.pwd)).workdir
58
- end
59
-
60
38
  def inspect(patch)
61
- offences = run_stylelint(patch)
62
- clean_up_stylelint_output(offences)
63
- .map do |offence|
64
- patch
65
- .added_lines
66
- .select { |line| line.new_lineno == offence['line'] }
67
- .map { |line| new_message(offence, line) }
68
- end
39
+ clean_up_stylelint_output(Linter.new(patch, stylelint_config).run).flat_map do |offence|
40
+ patch
41
+ .added_lines
42
+ .select { |line| line.new_lineno == offence['line'] }
43
+ .map { |line| new_message(offence, line) }
44
+ end
69
45
  end
70
46
 
71
47
  def new_message(offence, line)
@@ -79,30 +55,14 @@ module Pronto
79
55
  files_to_lint =~ path.to_s
80
56
  end
81
57
 
82
- def run_stylelint(patch)
83
- Dir.chdir(git_repo_path) do
84
- escaped_file_path = Shellwords.escape(patch.new_file_full_path.to_s)
85
- Open3.popen3("#{stylelint_executable} #{escaped_file_path} #{cli_options}") do |_stdin, stdout, stderr, thread|
86
- status = thread.value
87
- json = stdout.read
88
- if status.to_i == 0 && json.length == 0
89
- []
90
- else
91
- json = stderr.read if json.length == 0
92
- JSON.parse(json)
93
- end
94
- end
95
- end
96
- end
97
-
98
58
  def clean_up_stylelint_output(output)
99
59
  # 1. Filter out offences without a warning or error
100
60
  # 2. Get the messages for that file
101
61
  # 3. Ignore errors without a line number for now
102
62
  output
103
- .select { |offence| offence['warnings'].size > 0 }
104
- .map { |offence| offence['warnings'] }
105
- .flatten.select { |offence| offence['line'] }
63
+ .select { |offence| offence['warnings'].size.positive? }
64
+ .flat_map { |offence| offence['warnings'] }
65
+ .select { |offence| offence['line'] }
106
66
  end
107
67
  end
108
68
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-stylelint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Jalbert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-10 00:00:00.000000000 Z
11
+ date: 2025-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -50,34 +50,6 @@ dependencies:
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
52
  version: '2.0'
53
- - !ruby/object:Gem::Dependency
54
- name: rake
55
- requirement: !ruby/object:Gem::Requirement
56
- requirements:
57
- - - "~>"
58
- - !ruby/object:Gem::Version
59
- version: '13.0'
60
- type: :development
61
- prerelease: false
62
- version_requirements: !ruby/object:Gem::Requirement
63
- requirements:
64
- - - "~>"
65
- - !ruby/object:Gem::Version
66
- version: '13.0'
67
- - !ruby/object:Gem::Dependency
68
- name: rspec
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - "~>"
72
- - !ruby/object:Gem::Version
73
- version: '3.4'
74
- type: :development
75
- prerelease: false
76
- version_requirements: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - "~>"
79
- - !ruby/object:Gem::Version
80
- version: '3.4'
81
53
  description:
82
54
  email: kevin.j.jalbert@gmail.com
83
55
  executables: []
@@ -89,6 +61,8 @@ files:
89
61
  - LICENSE
90
62
  - README.md
91
63
  - lib/pronto/stylelint.rb
64
+ - lib/pronto/stylelint/config.rb
65
+ - lib/pronto/stylelint/linter.rb
92
66
  - lib/pronto/stylelint/version.rb
93
67
  homepage: https://github.com/kevinjalbert/pronto-stylelint
94
68
  licenses: