skill-assessment-app/.rubocop.yml
Mark Moser fc784ffcb1 completes #17 - live-coder plus text input type
Squashed commit of the following:

commit d41cbf66eb2a9ee705ab60bb156eed95881fa193
Author: Mark Moser <mark.moser@perficient.com>
Date:   Thu Aug 4 19:58:20 2016 -0500

    live-coder-text validations

commit 866bfeb863516a8656bc26b10f967d0b9b8d8505
Author: Mark Moser <mark.moser@perficient.com>
Date:   Thu Aug 4 11:57:57 2016 -0500

    getting things green again and rebasing develop

commit 28a23200f291e30c690b71e9bcae3e1a69eb3093
Author: Derek Montgomery <montgomerygraphics@gmail.com>
Date:   Thu Aug 4 10:14:23 2016 -0500

    Progress on live coder text field
2016-08-04 20:01:17 -05:00

63 lines
973 B
YAML

AllCops:
Exclude:
- db/schema.rb
- db/seeds.rb
- bin/**/*
- vendor/assets/**/*
Style/AndOr:
Enabled: false
Style/ClassAndModuleChildren:
Exclude:
- test/test_helper.rb
Style/Documentation:
Enabled: false
Style/EmptyLines:
Exclude:
- config/initializers/sorcery.rb
Style/ExtraSpacing:
Exclude:
- db/migrate/**/*
Style/IndentationConsistency:
EnforcedStyle: rails
Exclude:
- config/routes.rb
Style/MethodDefParentheses:
Enabled: false
Style/SpaceBeforeFirstArg:
Exclude:
- config/routes.rb
Style/StringLiterals:
Enabled: false
Metrics/AbcSize:
Exclude:
- db/migrate/**/*
Max: 20
# TODO: remove this cop exception after refactor
Metrics/ClassLength:
Exclude:
- app/controllers/candidate_controller.rb
- test/**/*
Metrics/LineLength:
Max: 110
Exclude:
- Rakefile
- config/**/*
- lib/tasks/**/*
- test/test_helper.rb
Metrics/MethodLength:
Exclude:
- db/migrate/*