.rubocop.yml in trema-0.4.7 vs .rubocop.yml in trema-0.4.8

- old
+ new

@@ -1,16 +1,32 @@ -inherit_from: rubocop-todo.yml +AllCops: + Include: + - ./*.conf + - ./Gemfile + - ./Guardfile + - ./Rakefile + - tasks/*.rake + Exclude: + - bin/* + - tmp/**/* + - vendor/**/* + +Style/StringLiterals: + EnforcedStyle: single_quotes + +Style/DotPosition: + EnforcedStyle: trailing