File: default.yml

package info (click to toggle)
ruby-rubocop-packaging 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 220 kB
  • sloc: ruby: 739; sh: 4; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 1,120 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
# This is the default configuration file.

Packaging/BundlerSetupInTests:
  Description: >-
                 Using `bundler/setup` in tests is redundant. Consider
                 removing it.
  Enabled: true
  VersionAdded: '0.4'
  VersionChanged: '0.5'

Packaging/GemspecGit:
  Description: >-
                 Avoid using git to produce lists of files. Downstreams
                 often need to build your package in an environment
                 that does not have git (on purpose). Use some pure
                 Ruby alternative, like `Dir` or `Dir.glob`.
  Enabled: true
  VersionAdded: '0.1'
  VersionChanged: '0.1'

Packaging/RequireHardcodingLib:
  Description: >-
                 Avoid using `require` with relative path to lib. Use
                 `require` with absolute path instead.
  Enabled: true
  VersionAdded: '0.4'
  VersionChanged: '0.5'

Packaging/RequireRelativeHardcodingLib:
  Description: >-
                 Avoid using `require_relative` with relative path to
                 lib. Use `require` with absolute path instead.
  Enabled: true
  VersionAdded: '0.2'
  VersionChanged: '0.5'