code-scanning-rubocop 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: fba92930acfcdaf83b378482055fe0d246bdcd7703016c552fa5cd16cc5a33d8
4
+ data.tar.gz: e0db9ec9d8e166c0e113481750a797c2f3a2c154ad260c20d0157908fa6389aa
5
+ SHA512:
6
+ metadata.gz: c072c9d8b0c08f54c3c31edf48ba49be2ef7d7241d177003f8cfdc9b455a1d7a6b5a6e906e751b0b686d4d9d0b9629692a15b1f3e6cf25c2caabbdf94818df09
7
+ data.tar.gz: e386d92ff361fa505a7d7d1d1b0f41992175170e2528e7cd9c13128e3469ce097b775c6554a135a9400cba7a2f0cc2f271061f63446512a30db216dbf54ca43a
@@ -0,0 +1,56 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ # Ignore Byebug command history file.
17
+ .byebug_history
18
+
19
+ ## Specific to RubyMotion:
20
+ .dat*
21
+ .repl_history
22
+ build/
23
+ *.bridgesupport
24
+ build-iPhoneOS/
25
+ build-iPhoneSimulator/
26
+
27
+ ## Specific to RubyMotion (use of CocoaPods):
28
+ #
29
+ # We recommend against adding the Pods directory to your .gitignore. However
30
+ # you should judge for yourself, the pros and cons are mentioned at:
31
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
32
+ #
33
+ # vendor/Pods/
34
+
35
+ ## Documentation cache and generated files:
36
+ /.yardoc/
37
+ /_yardoc/
38
+ /doc/
39
+ /rdoc/
40
+
41
+ ## Environment normalization:
42
+ /.bundle/
43
+ /vendor/bundle
44
+ /lib/bundler/man/
45
+
46
+ # for a library or gem, you might want to ignore these files since the code is
47
+ # intended to run in multiple environments; otherwise, check them in:
48
+ # Gemfile.lock
49
+ # .ruby-version
50
+ # .ruby-gemset
51
+
52
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
53
+ .rvmrc
54
+
55
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
56
+ # .rubocop-https?--*
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at arthurnn@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
@@ -0,0 +1,11 @@
1
+ FROM ruby:2.7.1
2
+
3
+ # throw errors if Gemfile has been modified since Gemfile.lock
4
+ RUN bundle config --global frozen 1
5
+
6
+ COPY . .
7
+ RUN rake install
8
+
9
+ ARG GITHUB_WORKSPACE
10
+
11
+ ENTRYPOINT ["/entrypoint.sh"]
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in code-scanning-rubocop.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "minitest", "~> 5.0"
@@ -0,0 +1,53 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ code-scanning-rubocop (0.1.0)
5
+ activesupport
6
+ rubocop (~> 0.82.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (6.0.2.2)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 0.7, < 2)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ zeitwerk (~> 2.2)
17
+ ast (2.4.0)
18
+ concurrent-ruby (1.1.6)
19
+ i18n (1.8.2)
20
+ concurrent-ruby (~> 1.0)
21
+ jaro_winkler (1.5.4)
22
+ minitest (5.14.0)
23
+ parallel (1.19.1)
24
+ parser (2.7.1.2)
25
+ ast (~> 2.4.0)
26
+ rainbow (3.0.0)
27
+ rake (12.3.3)
28
+ rexml (3.2.4)
29
+ rubocop (0.82.0)
30
+ jaro_winkler (~> 1.5.1)
31
+ parallel (~> 1.10)
32
+ parser (>= 2.7.0.1)
33
+ rainbow (>= 2.2.2, < 4.0)
34
+ rexml
35
+ ruby-progressbar (~> 1.7)
36
+ unicode-display_width (>= 1.4.0, < 2.0)
37
+ ruby-progressbar (1.10.1)
38
+ thread_safe (0.3.6)
39
+ tzinfo (1.2.7)
40
+ thread_safe (~> 0.1)
41
+ unicode-display_width (1.7.0)
42
+ zeitwerk (2.3.0)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ code-scanning-rubocop!
49
+ minitest (~> 5.0)
50
+ rake (~> 12.0)
51
+
52
+ BUNDLED WITH
53
+ 2.1.4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Arthur Nogueira Neves
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # Code::Scanning::Rubocop
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/code/scanning/rubocop`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'code-scanning-rubocop'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install code-scanning-rubocop
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/arthurnn/code-scanning-rubocop. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/arthurnn/code-scanning-rubocop/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the Code::Scanning::Rubocop project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/arthurnn/code-scanning-rubocop/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "code/scanning/rubocop"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,35 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+
4
+ require_relative 'lib/code_scanning/rubocop/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "code-scanning-rubocop"
8
+ spec.version = CodeScanning::Rubocop::VERSION
9
+ spec.authors = ["Arthur Neves"]
10
+ spec.email = ["arthurnn@gmail.com"]
11
+
12
+ spec.summary = %q{Extra formater to make rubocop compatible with GitHub's code-scanning feature.}
13
+ spec.description = %q{This gem adds a SARIF formatter to rubocop, so we can export alerts to code-scanning inside GitHub.}
14
+ spec.homepage = "https://github.com/arthurnn/code-scanning-rubocop"
15
+ spec.license = "MIT"
16
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
17
+
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/arthurnn/code-scanning-rubocop"
21
+ #spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
26
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_dependency 'rubocop', '~> 0.82.0'
33
+ # TODO: remove this
34
+ spec.add_dependency 'activesupport'
35
+ end
@@ -0,0 +1,9 @@
1
+ #!/bin/sh
2
+
3
+ set -x
4
+
5
+ cd $GITHUB_WORKSPACE
6
+
7
+ gem list
8
+ rubocop --require code_scanning --format CodeScanning::SarifFormatter
9
+ exit 0
@@ -0,0 +1,4 @@
1
+ module CodeScanning
2
+ end
3
+
4
+ require 'code_scanning/rubocop/sarif_formatter'
@@ -0,0 +1,122 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rubocop/formatter/base_formatter'
4
+ require 'json'
5
+ require 'active_support/all'
6
+ require 'pathname'
7
+
8
+ # TODO: fix me
9
+ ROOT = __dir__
10
+ module CodeScanning
11
+
12
+ class SarifFormatter < RuboCop::Formatter::BaseFormatter
13
+ def initialize(output, options = {})
14
+ super
15
+ @sarif = {}
16
+ end
17
+
18
+ def started(_target_files)
19
+ @sarif['$schema'] = 'https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json'
20
+ @sarif['version'] = '2.1.0'
21
+ @rules_map = {}
22
+ @results = []
23
+ @rules = []
24
+ @sarif['runs'] = [
25
+ { 'tool' => {
26
+ 'driver' => { 'name' => 'Rubocop', 'rules' => @rules }
27
+ },
28
+ 'results' => @results }
29
+ ]
30
+ # TODO: under runs
31
+ # "tool" : {
32
+ # "driver" : {
33
+ # "name" : "CodeQL command-line toolchain",
34
+ # "organization" : "GitHub",
35
+ # "semanticVersion" : "2.0.0",
36
+ # "rules" : [ {
37
+ end
38
+
39
+ Rule = Struct.new(:name, :index, :hash) do
40
+ end
41
+
42
+ def set_rule(cop_name, severity)
43
+ if r = @rules_map[cop_name]
44
+ return r
45
+ end
46
+
47
+ desc = RuboCop::ConfigLoader.default_configuration[cop_name]['Description']
48
+ h = {
49
+ 'id' => cop_name, 'name' => cop_name,
50
+ 'shortDescription' => {
51
+ 'text' => desc
52
+ },
53
+ 'fullDescription' => {
54
+ 'text' => desc
55
+ },
56
+ 'defaultConfiguration' => {
57
+ 'level' => sarif_severity(severity)
58
+ },
59
+ 'properties' => {}
60
+ }
61
+ @rules << h
62
+ @rules_map[cop_name] = Rule.new(cop_name, @rules.size - 1, h)
63
+ end
64
+
65
+ def sarif_severity(cop_severity)
66
+ return cop_severity if cop_severity.in? %w[warning error]
67
+ return 'note' if cop_severity.in? %w[refactor convention]
68
+ return 'error' if cop_severity.in? %w[fatal]
69
+
70
+ 'none'
71
+ end
72
+
73
+ def file_finished(file, offenses)
74
+ relative_path = Pathname.new(file).relative_path_from(Pathname.new(ROOT)).to_s
75
+
76
+ offenses.each do |o|
77
+ rule = set_rule(o.cop_name, o.severity.name.to_s)
78
+
79
+ @results << {
80
+ "ruleId" => rule.name,
81
+ 'ruleIndex' => rule.index,
82
+ 'message' => {
83
+ 'text' => o.message
84
+ },
85
+ 'locations' => [
86
+ {
87
+ 'physicalLocation' => {
88
+ 'artifactLocation' => {
89
+ 'uri' => relative_path,
90
+ 'uriBaseId' => '%SRCROOT%',
91
+ 'index' => 0
92
+ },
93
+ 'region' => {
94
+ 'startLine' => o.first_line,
95
+ 'startColumn' => o.column,
96
+ 'endColumn' => o.last_column
97
+ }
98
+ }
99
+ }
100
+ ],
101
+ 'partialFingerprints' => {
102
+ # "primaryLocationLineHash" : "39fa2ee980eb94b0:1",
103
+ # "primaryLocationStartColumnFingerprint" : "4"
104
+ }
105
+ }
106
+
107
+ # # "%<path>s:%<line>d:%<column>d: %<severity>s: %<message>s\n",
108
+ # # path: file,
109
+ # # line: o.line,
110
+ # # column: o.real_column,
111
+ # # severity: o.severity.code,
112
+ # # message: message(o)
113
+ # # )
114
+ end
115
+ end
116
+
117
+ def finished(_inspected_files)
118
+ json = JSON.pretty_generate(@sarif)
119
+ output.print(json)
120
+ end
121
+ end
122
+ end
@@ -0,0 +1,5 @@
1
+ module CodeScanning
2
+ module Rubocop
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ name: 'Rubocop code-scanning'
2
+ description: 'Rubocop and code-scanning integration'
3
+ runs:
4
+ using: 'docker'
5
+ image: '../Dockerfile'
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: code-scanning-rubocop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Arthur Neves
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-05-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rubocop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.82.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.82.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: This gem adds a SARIF formatter to rubocop, so we can export alerts to
42
+ code-scanning inside GitHub.
43
+ email:
44
+ - arthurnn@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - CODE_OF_CONDUCT.md
51
+ - Dockerfile
52
+ - Gemfile
53
+ - Gemfile.lock
54
+ - LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - bin/console
58
+ - bin/setup
59
+ - code-scanning-rubocop.gemspec
60
+ - entrypoint.sh
61
+ - lib/code_scanning.rb
62
+ - lib/code_scanning/rubocop/sarif_formatter.rb
63
+ - lib/code_scanning/rubocop/version.rb
64
+ - rubocop-scan/action.yml
65
+ homepage: https://github.com/arthurnn/code-scanning-rubocop
66
+ licenses:
67
+ - MIT
68
+ metadata:
69
+ homepage_uri: https://github.com/arthurnn/code-scanning-rubocop
70
+ source_code_uri: https://github.com/arthurnn/code-scanning-rubocop
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.3.0
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ requirements: []
86
+ rubyforge_project:
87
+ rubygems_version: 2.7.6
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Extra formater to make rubocop compatible with GitHub's code-scanning feature.
91
+ test_files: []