pronto-stylelint 0.7.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 59c202087c5b0c66e52e6924c18cdf2a7e022bfe
4
+ data.tar.gz: 11ffa2311f8f38b2d11b7eedad286dffd32eaac9
5
+ SHA512:
6
+ metadata.gz: 513e5ded3a737d2a12707f1c6ed5c60c176486d9ec0b24da9d754fd835120e2993c6ff9b7f780555f41a6765b0b3d484d2c41b745aa828e4dbecf130a5ab6983
7
+ data.tar.gz: 5dbab0600b4b1b18e43e0a5d45fa25ee735f23ce4bd86dc5793d213ba2e9992f660a742cb076a5e7c90b5c9f8a44bdfda70c21c61106ffbf65daf9da55132049
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2016 Kevin Jalbert
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,32 @@
1
+ # Pronto runner for stylelint (using stylelint from npm)
2
+
3
+ Pronto runner for [stylelint](http://stylelint.io), the mighty, modern CSS linter. [What is Pronto?](https://github.com/mmozuras/pronto)
4
+
5
+ Uses official stylelint executable installed by `npm`.
6
+
7
+ Heavily inspired by [doits/pronto-eslint_npm](https://github.com/doits/pronto-eslint_npm).
8
+
9
+ ## Prerequisites
10
+
11
+ 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)).
12
+
13
+ ## Configuration of stylelint
14
+
15
+ Configuring stylelint via [.stylelintrc and consorts](http://stylelint.io/user-guide/configuration/#loading-the-configuration-object) and excludes via [.stylelintignore](http://stylelint.io/user-guide/configuration/#stylelintignore) will work just fine with pronto-stylelint.
16
+
17
+ ## Configuration of pronto-stylelint
18
+
19
+ pronto-stylelint can be configured by placing a `.pronto_stylelint.yml` inside the directory where pronto is run.
20
+
21
+ Following options are available:
22
+
23
+ | Option | Meaning | Default |
24
+ | -------------------- | ------------------------------------------------------------------------- | ----------------------------------------- |
25
+ | stylelint_executable | stylelint executable to call. | `stylelint` (calls `stylelint` in `PATH`) |
26
+
27
+ Example configuration to call custom stylelint executable:
28
+
29
+ ```yaml
30
+ # .pronto_stylelint.yml
31
+ stylelint_executable: '/my/custom/node/path/.bin/stylelint'
32
+ ```
@@ -0,0 +1,89 @@
1
+ require 'pronto'
2
+ require 'shellwords'
3
+
4
+ module Pronto
5
+ class Stylelint < Runner
6
+ CONFIG_FILE = '.pronto_stylelint.yml'.freeze
7
+ CONFIG_KEYS = %w(stylelint_executable).freeze
8
+
9
+ attr_writer :stylelint_executable
10
+
11
+ def stylelint_executable
12
+ @stylelint_executable || 'stylelint'.freeze
13
+ end
14
+
15
+ def files_to_lint
16
+ /\.(c|sc|sa|le)ss$/.freeze
17
+ end
18
+
19
+ def read_config
20
+ config_file = File.join(repo_path, CONFIG_FILE)
21
+ return unless File.exist?(config_file)
22
+ config = YAML.load_file(config_file)
23
+
24
+ CONFIG_KEYS.each do |config_key|
25
+ next unless config[config_key]
26
+ send("#{config_key}=", config[config_key])
27
+ end
28
+ end
29
+
30
+ def run
31
+ return [] if !@patches || @patches.count.zero?
32
+
33
+ read_config
34
+
35
+ @patches
36
+ .select { |patch| patch.additions > 0 }
37
+ .select { |patch| style_file?(patch.new_file_full_path) }
38
+ .map { |patch| inspect(patch) }
39
+ .flatten.compact
40
+ end
41
+
42
+ private
43
+
44
+ def repo_path
45
+ @_repo_path ||= @patches.first.repo.path
46
+ end
47
+
48
+ def inspect(patch)
49
+ offences = run_stylelint(patch)
50
+ clean_up_stylelint_output(offences)
51
+ .map do |offence|
52
+ patch
53
+ .added_lines
54
+ .select { |line| line.new_lineno == offence['line'] }
55
+ .map { |line| new_message(offence, line) }
56
+ end
57
+ end
58
+
59
+ def new_message(offence, line)
60
+ path = line.patch.delta.new_file[:path]
61
+ level = :warning
62
+
63
+ Message.new(path, line, level, offence['text'], nil, self.class)
64
+ end
65
+
66
+ def style_file?(path)
67
+ files_to_lint =~ path.to_s
68
+ end
69
+
70
+ def run_stylelint(patch)
71
+ Dir.chdir(repo_path) do
72
+ escaped_file_path = Shellwords.escape(patch.new_file_full_path.to_s)
73
+ JSON.parse(
74
+ `#{stylelint_executable} #{escaped_file_path} -f json`
75
+ )
76
+ end
77
+ end
78
+
79
+ def clean_up_stylelint_output(output)
80
+ # 1. Filter out offences without a warning or error
81
+ # 2. Get the messages for that file
82
+ # 3. Ignore errors without a line number for now
83
+ output
84
+ .select { |offence| offence['warnings'].size > 0 }
85
+ .map { |offence| offence['warnings'] }
86
+ .flatten.select { |offence| offence['line'] }
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,5 @@
1
+ module Pronto
2
+ module StylelintVersion
3
+ VERSION = '0.7.1'.freeze
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pronto-stylelint
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.1
5
+ platform: ruby
6
+ authors:
7
+ - Kevin Jalbert
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-12-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pronto
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.7.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.7.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '11.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '11.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.4'
55
+ description:
56
+ email: kevin.j.jalbert@gmail.com
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files:
60
+ - LICENSE
61
+ - README.md
62
+ files:
63
+ - LICENSE
64
+ - README.md
65
+ - lib/pronto/stylelint.rb
66
+ - lib/pronto/stylelint/version.rb
67
+ homepage: http://github.org/kevinjalbert/pronto-stylelint
68
+ licenses:
69
+ - MIT
70
+ metadata: {}
71
+ post_install_message:
72
+ rdoc_options: []
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: 2.0.0
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ requirements:
86
+ - stylelint (in PATH)
87
+ rubyforge_project:
88
+ rubygems_version: 2.5.1
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: Pronto runner for stylelint, the mighty, modern CSS linter.
92
+ test_files: []