File: .rubocop.yml

package info (click to toggle)
ruby-jekyll-watch 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 240 kB
  • sloc: ruby: 278; xml: 30; sh: 14; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 536 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
inherit_gem:
  jekyll: .rubocop.yml

AllCops:
  TargetRubyVersion: 2.2
  Include:
    - lib/**/*.rb

  Exclude:
    - .gitignore
    - .rspec
    - .rubocop.yml
    - .travis.yml
    - History.markdown
    - Gemfile.lock
    - LICENSE.txt
    - README.md
    - script/**/*
    - vendor/**/*

Lint/HandleExceptions:
  Exclude:
    - lib/jekyll/watcher.rb

Lint/RescueWithoutErrorClass:
  Exclude:
    - lib/jekyll/watcher.rb

Metrics/BlockLength:
  Exclude:
    - spec/**/*

Metrics/LineLength:
    Exclude:
      - jekyll-watch.gemspec