hoe-rubocop 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/.autotest DELETED
@@ -1,25 +0,0 @@
1
- # -*- ruby -*-
2
-
3
- require "autotest/restart"
4
-
5
- # Autotest.add_hook :initialize do |at|
6
- # at.testlib = "minitest/unit"
7
- #
8
- # at.extra_files << "../some/external/dependency.rb"
9
- #
10
- # at.libs << ":../some/external"
11
- #
12
- # at.add_exception "vendor"
13
- #
14
- # at.add_mapping(/dependency.rb/) do |f, _|
15
- # at.files_matching(/test_.*rb$/)
16
- # end
17
- #
18
- # %w(TestA TestB).each do |klass|
19
- # at.extra_class_map[klass] = "test/test_misc.rb"
20
- # end
21
- # end
22
-
23
- # Autotest.add_hook :run_command do |at|
24
- # system "rake build"
25
- # end
@@ -1,8 +0,0 @@
1
- # Save as .codeclimate.yml (note leading .) in project root directory
2
- languages:
3
- Ruby: true
4
- #JavaScript: true
5
- #PHP: true
6
- #Python: true
7
- # exclude_paths:
8
- # - "foo/bar.rb"
@@ -1,2 +0,0 @@
1
- repo_token: 8LdSaZP3hoBFTdllzT8Kw8wrffCbpFvYx
2
- service_name: travis-ci
@@ -1,5 +0,0 @@
1
- # api_endpoint: http://private-77f5-gemnasium.apiary-mock.com
2
- api_key: 0f4473f5825f325227eb7a3a9a3425af # You personal (secret) API key. Get it at https://gemnasium.com/settings/api_access
3
- project_name: hoe-rubocop # A name to remember your project.
4
- project_slug: saigkill/hoe-rubocop # Unique slug for this project. Get it on the "project settings" page.
5
- project_branch: master # /!\ If you don't use git, remove this line
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --format progress
@@ -1,38 +0,0 @@
1
- AllCops:
2
-
3
- Include:
4
- - 'lib/**/*.rb'
5
-
6
- Exclude:
7
- - 'Rakefile'
8
-
9
- DisplayCopNames: true
10
-
11
- Metrics/LineLength:
12
- Enabled: true
13
- Max: 80
14
-
15
- Metrics/CyclomaticComplexity:
16
- Severity: warning
17
-
18
- Style/PerlBackrefs:
19
- AutoCorrect: true
20
-
21
- Metrics/ParameterLists:
22
- Max: 10
23
- CountKeywordArgs: true
24
-
25
- Metrics/ClassLength:
26
- CountComments: false # count full line comments?
27
- Max: 150
28
-
29
- Metrics/ModuleLength:
30
- CountComments: false # count full line comments?
31
- Max: 190
32
-
33
- Metrics/MethodLength:
34
- CountComments: false # count full line comments?
35
- Max: 20
36
-
37
- Style/RedundantReturn:
38
- Enabled: false
@@ -1,21 +0,0 @@
1
- build:
2
- environment:
3
- ruby: '2.2.3'
4
-
5
- checks:
6
- ruby:
7
- code_rating: true
8
- duplicate_code: true
9
- style_while_until_do: true
10
- style_signal_exception:
11
- enforced_style: semantic
12
- style_redundant_exception: true
13
- style_raise_args:
14
- enforced_style: exploded
15
- style_predicate_name: true
16
- style_comment_annotation: true
17
- rails_output: true
18
-
19
- filter:
20
- excluded_paths:
21
- - 'test/*'
@@ -1,29 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.0
4
- - 2.2.1
5
- - 2.2.2
6
- - 2.2.3
7
-
8
- dist: trusty
9
-
10
- os:
11
- - linux
12
-
13
- env:
14
- global:
15
- - JRUBY_OPTS=-Xcext.enabled=true
16
- - CI=true
17
- - TRAVIS=true
18
- - LANG=en_US.UTF-8
19
- - LC_ALL=en_US.UTF-8
20
-
21
- before_install:
22
- - gem install bundler
23
-
24
- after_success:
25
- - CI=true TRAVIS=true coveralls --verbose
26
-
27
- notifications:
28
- email:
29
- - Sascha.Manns@mailbox.org
@@ -1,17 +0,0 @@
1
- # @markup markdown
2
- # @title Code of Conduct
3
- # @author Sascha Manns
4
-
5
- # Contributor Code of Conduct
6
-
7
- As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
8
-
9
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
10
-
11
- Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
12
-
13
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
14
-
15
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
16
-
17
- This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)