File: strict_ruby.yml

package info (click to toggle)
ruby-rspec-stubbed-env 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,004 kB
  • sloc: ruby: 932; javascript: 529; sh: 4; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# These Cops Must Always Be Enabled!
# These Cops check for things that are *literally* bugs,
#   and no code should ever be released that fails these cops.
#
# The Exclude: [] is crucial here:
#   even if our .rubocop_todo.yml contained exclusions for strict cops, we nullify them here,
#   thus, re-activating these cops for all the files.
#
# These settings must be loaded after any files of "TODOs" that instruct RuboCop to ignore errors.
#
Lint/Debugger: # don't leave binding.pry
  Enabled: true
  Exclude: []