pronto-stylelint 0.7.1 → 0.10.1

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
- SHA1:
3
- metadata.gz: 59c202087c5b0c66e52e6924c18cdf2a7e022bfe
4
- data.tar.gz: 11ffa2311f8f38b2d11b7eedad286dffd32eaac9
2
+ SHA256:
3
+ metadata.gz: 21b9a5cecdaf8da78e83dc2e39eb279bb4193bd19de799ead76785a37654dff9
4
+ data.tar.gz: 734ebd5ba556524ed0b555fe6c01e7b238973c77ae277d0eb1c97e0e01647cb1
5
5
  SHA512:
6
- metadata.gz: 513e5ded3a737d2a12707f1c6ed5c60c176486d9ec0b24da9d754fd835120e2993c6ff9b7f780555f41a6765b0b3d484d2c41b745aa828e4dbecf130a5ab6983
7
- data.tar.gz: 5dbab0600b4b1b18e43e0a5d45fa25ee735f23ce4bd86dc5793d213ba2e9992f660a742cb076a5e7c90b5c9f8a44bdfda70c21c61106ffbf65daf9da55132049
6
+ metadata.gz: b61477cc5650e6261897fd98685c1a06680fcd270020ab018669bc02d20f797c0ed8209a88ab2df42d745454e41d77bf0991ca077647ddc704e8fd6cddc34adf
7
+ data.tar.gz: c51d0b08f27979401671abbe40e24dc090109894f5d5a20dbbf659df1d3087a935c253a00d81330e87f09576a960b3de642380edb034531c8807fbf350752dcc
data/README.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Pronto runner for stylelint (using stylelint from npm)
2
2
 
3
- Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/mmozuras/pronto)
3
+ [![Gem Version](https://badge.fury.io/rb/pronto-stylelint.svg)](http://badge.fury.io/rb/pronto-stylelint)
4
+ [![Build Status](https://travis-ci.org/kevinjalbert/pronto-stylelint.svg?branch=master)](https://travis-ci.org/kevinjalbert/pronto-stylelint)
5
+ [![Code Climate](https://codeclimate.com/github/kevinjalbert/pronto-stylelint/badges/gpa.svg)](https://codeclimate.com/github/kevinjalbert/pronto-stylelint)
6
+ [![Test Coverage](https://codeclimate.com/github/kevinjalbert/pronto-stylelint/badges/coverage.svg)](https://codeclimate.com/github/kevinjalbert/pronto-stylelint/coverage)
7
+
8
+ Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/prontolabs/pronto)
4
9
 
5
10
  Uses official stylelint executable installed by `npm`.
6
11
 
@@ -20,13 +25,17 @@ pronto-stylelint can be configured by placing a `.pronto_stylelint.yml` inside t
20
25
 
21
26
  Following options are available:
22
27
 
23
- | Option | Meaning | Default |
24
- | -------------------- | ------------------------------------------------------------------------- | ----------------------------------------- |
25
- | stylelint_executable | stylelint executable to call. | `stylelint` (calls `stylelint` in `PATH`) |
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` |
26
33
 
27
- Example configuration to call custom stylelint executable:
34
+ Example configuration to call custom stylelint executable and specify custom options:
28
35
 
29
36
  ```yaml
30
37
  # .pronto_stylelint.yml
31
38
  stylelint_executable: '/my/custom/node/path/.bin/stylelint'
39
+ files_to_lint: '\.(c|sc)ss$'
40
+ cli_options: '--config /custom/stylelintrc'
32
41
  ```
@@ -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(repo_path, CONFIG_FILE)
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 repo_path
45
- @_repo_path ||= @patches.first.repo.path
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(repo_path) do
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} -f json`
85
+ `#{stylelint_executable} #{escaped_file_path} #{cli_options}`
75
86
  )
76
87
  end
77
88
  end
@@ -1,5 +1,5 @@
1
1
  module Pronto
2
2
  module StylelintVersion
3
- VERSION = '0.7.1'.freeze
3
+ VERSION = '0.10.1'.freeze
4
4
  end
5
5
  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.7.1
4
+ version: 0.10.1
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: 2016-12-02 00:00:00.000000000 Z
11
+ date: 2021-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -16,28 +16,48 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.0
19
+ version: 0.10.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.7.0
26
+ version: 0.10.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rugged
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0.24'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '2.0'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0.24'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '2.0'
27
47
  - !ruby/object:Gem::Dependency
28
48
  name: rake
29
49
  requirement: !ruby/object:Gem::Requirement
30
50
  requirements:
31
51
  - - "~>"
32
52
  - !ruby/object:Gem::Version
33
- version: '11.0'
53
+ version: '13.0'
34
54
  type: :development
35
55
  prerelease: false
36
56
  version_requirements: !ruby/object:Gem::Requirement
37
57
  requirements:
38
58
  - - "~>"
39
59
  - !ruby/object:Gem::Version
40
- version: '11.0'
60
+ version: '13.0'
41
61
  - !ruby/object:Gem::Dependency
42
62
  name: rspec
43
63
  requirement: !ruby/object:Gem::Requirement
@@ -52,7 +72,7 @@ dependencies:
52
72
  - - "~>"
53
73
  - !ruby/object:Gem::Version
54
74
  version: '3.4'
55
- description:
75
+ description:
56
76
  email: kevin.j.jalbert@gmail.com
57
77
  executables: []
58
78
  extensions: []
@@ -64,11 +84,11 @@ files:
64
84
  - README.md
65
85
  - lib/pronto/stylelint.rb
66
86
  - lib/pronto/stylelint/version.rb
67
- homepage: http://github.org/kevinjalbert/pronto-stylelint
87
+ homepage: https://github.com/kevinjalbert/pronto-stylelint
68
88
  licenses:
69
89
  - MIT
70
90
  metadata: {}
71
- post_install_message:
91
+ post_install_message:
72
92
  rdoc_options: []
73
93
  require_paths:
74
94
  - lib
@@ -76,7 +96,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
96
  requirements:
77
97
  - - ">="
78
98
  - !ruby/object:Gem::Version
79
- version: 2.0.0
99
+ version: 2.3.0
80
100
  required_rubygems_version: !ruby/object:Gem::Requirement
81
101
  requirements:
82
102
  - - ">="
@@ -84,9 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
104
  version: '0'
85
105
  requirements:
86
106
  - stylelint (in PATH)
87
- rubyforge_project:
88
- rubygems_version: 2.5.1
89
- signing_key:
107
+ rubygems_version: 3.1.4
108
+ signing_key:
90
109
  specification_version: 4
91
110
  summary: Pronto runner for stylelint, the mighty, modern CSS linter.
92
111
  test_files: []