|
| 1 | +# This is the default configuration file. Enabling and disabling is configured |
| 2 | +# in separate files. This file adds all other parameters apart from Enabled. |
| 3 | + |
| 4 | +inherit_from: |
| 5 | + - enabled.yml |
| 6 | + - disabled.yml |
| 7 | + |
| 8 | +# Common configuration. |
| 9 | +AllCops: |
| 10 | + # What version of Rails is the inspected code using? If a value is specified |
| 11 | + # for TargetRailsVersion then it is used. Acceptable values are specificed |
| 12 | + # as a float (i.e. 5.1); the patch version of Rails should not be included. |
| 13 | + # If TargetRailsVersion is not set, RuboCop will parse the Gemfile.lock or |
| 14 | + # gems.locked file to find the version of Rails that has been bound to the |
| 15 | + # application. If neither of those files exist, RuboCop will use Rails 5.0 |
| 16 | + # as the default. |
| 17 | + TargetRailsVersion: ~ |
| 18 | + |
| 19 | +Rails/ActionFilter: |
| 20 | + EnforcedStyle: action |
| 21 | + SupportedStyles: |
| 22 | + - action |
| 23 | + - filter |
| 24 | + Include: |
| 25 | + - app/controllers/**/*.rb |
| 26 | + |
| 27 | +Rails/AssertNot: |
| 28 | + Include: |
| 29 | + - '**/test/**/*' |
| 30 | + |
| 31 | +Rails/Blank: |
| 32 | + # Convert usages of `nil? || empty?` to `blank?` |
| 33 | + NilOrEmpty: true |
| 34 | + # Convert usages of `!present?` to `blank?` |
| 35 | + NotPresent: true |
| 36 | + # Convert usages of `unless present?` to `if blank?` |
| 37 | + UnlessPresent: true |
| 38 | + |
| 39 | +Rails/BulkChangeTable: |
| 40 | + Database: null |
| 41 | + SupportedDatabases: |
| 42 | + - mysql |
| 43 | + - postgresql |
| 44 | + Include: |
| 45 | + - db/migrate/*.rb |
| 46 | + |
| 47 | +Rails/CreateTableWithTimestamps: |
| 48 | + Include: |
| 49 | + - db/migrate/*.rb |
| 50 | + |
| 51 | +Rails/Date: |
| 52 | + # The value `strict` disallows usage of `Date.today`, `Date.current`, |
| 53 | + # `Date#to_time` etc. |
| 54 | + # The value `flexible` allows usage of `Date.current`, `Date.yesterday`, etc |
| 55 | + # (but not `Date.today`) which are overridden by ActiveSupport to handle current |
| 56 | + # time zone. |
| 57 | + EnforcedStyle: flexible |
| 58 | + SupportedStyles: |
| 59 | + - strict |
| 60 | + - flexible |
| 61 | + |
| 62 | +Rails/Delegate: |
| 63 | + # When set to true, using the target object as a prefix of the |
| 64 | + # method name without using the `delegate` method will be a |
| 65 | + # violation. When set to false, this case is legal. |
| 66 | + EnforceForPrefixed: true |
| 67 | + |
| 68 | +Rails/DynamicFindBy: |
| 69 | + Whitelist: |
| 70 | + - find_by_sql |
| 71 | + |
| 72 | +Rails/EnumUniqueness: |
| 73 | + Include: |
| 74 | + - app/models/**/*.rb |
| 75 | + |
| 76 | +Rails/Exit: |
| 77 | + Include: |
| 78 | + - app/**/*.rb |
| 79 | + - config/**/*.rb |
| 80 | + - lib/**/*.rb |
| 81 | + Exclude: |
| 82 | + - lib/**/*.rake |
| 83 | + |
| 84 | +Rails/FilePath: |
| 85 | + EnforcedStyle: arguments |
| 86 | + SupportedStyles: |
| 87 | + - slashes |
| 88 | + - arguments |
| 89 | + |
| 90 | +Rails/FindBy: |
| 91 | + Include: |
| 92 | + - app/models/**/*.rb |
| 93 | + |
| 94 | +Rails/FindEach: |
| 95 | + Include: |
| 96 | + - app/models/**/*.rb |
| 97 | + |
| 98 | +Rails/HasAndBelongsToMany: |
| 99 | + Include: |
| 100 | + - app/models/**/*.rb |
| 101 | + |
| 102 | +Rails/HasManyOrHasOneDependent: |
| 103 | + Include: |
| 104 | + - app/models/**/*.rb |
| 105 | + |
| 106 | +Rails/HttpStatus: |
| 107 | + EnforcedStyle: symbolic |
| 108 | + SupportedStyles: |
| 109 | + - numeric |
| 110 | + - symbolic |
| 111 | + |
| 112 | +Rails/InverseOf: |
| 113 | + Include: |
| 114 | + - app/models/**/*.rb |
| 115 | + |
| 116 | +Rails/LexicallyScopedActionFilter: |
| 117 | + Include: |
| 118 | + - app/controllers/**/*.rb |
| 119 | + |
| 120 | +Rails/NotNullColumn: |
| 121 | + Include: |
| 122 | + - db/migrate/*.rb |
| 123 | + |
| 124 | +Rails/Output: |
| 125 | + Include: |
| 126 | + - app/**/*.rb |
| 127 | + - config/**/*.rb |
| 128 | + - db/**/*.rb |
| 129 | + - lib/**/*.rb |
| 130 | + |
| 131 | +Rails/Present: |
| 132 | + # Convert usages of `!nil? && !empty?` to `present?` |
| 133 | + NotNilAndNotEmpty: true |
| 134 | + # Convert usages of `!blank?` to `present?` |
| 135 | + NotBlank: true |
| 136 | + # Convert usages of `unless blank?` to `if present?` |
| 137 | + UnlessBlank: true |
| 138 | + |
| 139 | +Rails/ReadWriteAttribute: |
| 140 | + Include: |
| 141 | + - app/models/**/*.rb |
| 142 | + |
| 143 | +Rails/RefuteMethods: |
| 144 | + Include: |
| 145 | + - '**/test/**/*' |
| 146 | + |
| 147 | +Rails/RequestReferer: |
| 148 | + EnforcedStyle: referer |
| 149 | + SupportedStyles: |
| 150 | + - referer |
| 151 | + - referrer |
| 152 | + |
| 153 | +Rails/ReversibleMigration: |
| 154 | + Include: |
| 155 | + - db/migrate/*.rb |
| 156 | + |
| 157 | +Rails/SafeNavigation: |
| 158 | + # This will convert usages of `try` to use safe navigation as well as `try!`. |
| 159 | + # `try` and `try!` work slightly differently. `try!` and safe navigation will |
| 160 | + # both raise a `NoMethodError` if the receiver of the method call does not |
| 161 | + # implement the intended method. `try` will not raise an exception for this. |
| 162 | + ConvertTry: false |
| 163 | + |
| 164 | +Rails/ScopeArgs: |
| 165 | + Include: |
| 166 | + - app/models/**/*.rb |
| 167 | + |
| 168 | +Rails/TimeZone: |
| 169 | + # The value `strict` means that `Time` should be used with `zone`. |
| 170 | + # The value `flexible` allows usage of `in_time_zone` instead of `zone`. |
| 171 | + EnforcedStyle: flexible |
| 172 | + SupportedStyles: |
| 173 | + - strict |
| 174 | + - flexible |
| 175 | + |
| 176 | +Rails/UniqBeforePluck: |
| 177 | + EnforcedStyle: conservative |
| 178 | + SupportedStyles: |
| 179 | + - conservative |
| 180 | + - aggressive |
| 181 | + AutoCorrect: false |
| 182 | + |
| 183 | +Rails/UnknownEnv: |
| 184 | + Environments: |
| 185 | + - development |
| 186 | + - test |
| 187 | + - production |
| 188 | + |
| 189 | +Rails/SkipsModelValidations: |
| 190 | + Blacklist: |
| 191 | + - decrement! |
| 192 | + - decrement_counter |
| 193 | + - increment! |
| 194 | + - increment_counter |
| 195 | + - toggle! |
| 196 | + - touch |
| 197 | + - update_all |
| 198 | + - update_attribute |
| 199 | + - update_column |
| 200 | + - update_columns |
| 201 | + - update_counters |
| 202 | + |
| 203 | +Rails/Validation: |
| 204 | + Include: |
| 205 | + - app/models/**/*.rb |
0 commit comments