Last active
August 29, 2015 14:15
-
-
Save crmaxx/958bf09b45a1b54bd629 to your computer and use it in GitHub Desktop.
Current rubocop config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Style/IfUnlessModifier: | |
MaxLineLength: 120 | |
Style/WhileUntilModifier: | |
MaxLineLength: 120 | |
Style/AsciiComments: | |
Enabled: false | |
Style/DotPosition: | |
Enabled: false | |
Style/MultilineOperationIndentation: | |
Enabled: false | |
StringLiterals: | |
Enabled: false | |
Metrics/ClassLength: | |
Max: 300 | |
MethodLength: | |
Max: 25 | |
Metrics/LineLength: | |
Max: 120 | |
AllowURI: true | |
Metrics/AbcSize: | |
Max: 25 | |
Documentation: | |
Enabled: false | |
AllCops: | |
Include: | |
- **/Rakefile | |
- **/Capfile | |
- **/config.ru | |
Exclude: | |
- db/** | |
- config/** | |
- script/** | |
- faye/** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment