pronto-jscs 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +11 -0
- data/Rakefile +2 -0
- data/lib/pronto/jscs.rb +37 -0
- data/lib/pronto/jscs/version.rb +5 -0
- data/lib/pronto/jscs/wrapper.rb +18 -0
- data/pronto-jscs.gemspec +25 -0
- metadata +124 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8d59ca2466ee3763074f11ffd2ad6ac5c97c27bc
|
4
|
+
data.tar.gz: 6e31d9b7532eb577c9ca9238595308cc623ed69f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 366f7b78b4058ee44d7d9bc831fb924eec0032fc1e467cb54a28fb29159ff00636e36eccbf0418ddb5b90dd2c7f9235eaf5c2e0c096dc930be0c9d1f59b77334
|
7
|
+
data.tar.gz: 9d2f6168afef208a9c4a8512e001ee01d955135e1d4990ee7e9990a6905e0f835a0b3c5407ae9c42b4fc9ce1fe1539b5aecaab86e2dc28b6344a07dc4cf6f038
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Tomas Varaneckas
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# Pronto runner for JSCS
|
2
|
+
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/pronto-jscs.png)](http://badge.fury.io/rb/pronto-jscs)
|
4
|
+
|
5
|
+
Pronto runner for [JSCS](http://jscs.info/), JavaScript Code Style checker.
|
6
|
+
[What is Pronto?](https://github.com/mmozuras/pronto)
|
7
|
+
|
8
|
+
## Prerequisites
|
9
|
+
|
10
|
+
You'll need to be able to run `jscs` from command line. See [jscs.info](http://jscs.info).
|
11
|
+
|
data/Rakefile
ADDED
data/lib/pronto/jscs.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'pronto'
|
2
|
+
require 'pronto/jscs/wrapper'
|
3
|
+
|
4
|
+
module Pronto
|
5
|
+
class JSCSRunner < Runner
|
6
|
+
def run(patches, _)
|
7
|
+
return [] unless patches
|
8
|
+
patches.select { |p| p.additions > 0 }
|
9
|
+
.select { |p| js_file?(p.new_file_full_path) }
|
10
|
+
.map { |p| inspect(p) }
|
11
|
+
.flatten
|
12
|
+
.compact
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def inspect(patch)
|
18
|
+
offences = JSCS::Wrapper.new(patch).lint
|
19
|
+
offences.map do |_file_path, violations|
|
20
|
+
violations.map do |offence|
|
21
|
+
patch.added_lines.select { |line| line.new_lineno == offence['line'] }
|
22
|
+
.map { |line| new_message(offence, line) }
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def new_message(offence, line)
|
28
|
+
path = line.patch.delta.new_file[:path]
|
29
|
+
level = :warning
|
30
|
+
Message.new(path, line, level, offence['message'])
|
31
|
+
end
|
32
|
+
|
33
|
+
def js_file?(path)
|
34
|
+
%w(.js .erb .html).include?(File.extname(path))
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Pronto
|
2
|
+
module JSCS
|
3
|
+
class Wrapper
|
4
|
+
def initialize(patch)
|
5
|
+
@patch = patch
|
6
|
+
end
|
7
|
+
|
8
|
+
def lint
|
9
|
+
return [] if @patch.nil?
|
10
|
+
path = @patch.new_file_full_path.to_s
|
11
|
+
params = '--reporter=json'
|
12
|
+
params << ' -p airbnb' unless File.exist?('.jscsrc')
|
13
|
+
output = `jscs #{path} #{params}`
|
14
|
+
JSON.parse(output)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/pronto-jscs.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'pronto/jscs/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'pronto-jscs'
|
8
|
+
spec.version = Pronto::JSCS::VERSION
|
9
|
+
spec.authors = ['Tomas Varaneckas']
|
10
|
+
spec.email = ['tomas.varaneckas@gmail.com']
|
11
|
+
spec.summary = 'Pronto runner for JSCS, JavaScript Code Style checker'
|
12
|
+
spec.homepage = 'http://github.org/spajus/pronto-jscs'
|
13
|
+
spec.license = 'MIT'
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ['lib']
|
19
|
+
|
20
|
+
spec.add_runtime_dependency('pronto', '~> 0.5.0')
|
21
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
22
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
23
|
+
spec.add_development_dependency 'rspec', '~> 3.3'
|
24
|
+
spec.add_development_dependency 'rspec-its', '~> 1.2'
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pronto-jscs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tomas Varaneckas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-12-03 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.5.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.5.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.3'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec-its
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.2'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.2'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- tomas.varaneckas@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- lib/pronto/jscs.rb
|
96
|
+
- lib/pronto/jscs/version.rb
|
97
|
+
- lib/pronto/jscs/wrapper.rb
|
98
|
+
- pronto-jscs.gemspec
|
99
|
+
homepage: http://github.org/spajus/pronto-jscs
|
100
|
+
licenses:
|
101
|
+
- MIT
|
102
|
+
metadata: {}
|
103
|
+
post_install_message:
|
104
|
+
rdoc_options: []
|
105
|
+
require_paths:
|
106
|
+
- lib
|
107
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
requirements: []
|
118
|
+
rubyforge_project:
|
119
|
+
rubygems_version: 2.2.2
|
120
|
+
signing_key:
|
121
|
+
specification_version: 4
|
122
|
+
summary: Pronto runner for JSCS, JavaScript Code Style checker
|
123
|
+
test_files: []
|
124
|
+
has_rdoc:
|