Skip to content

Commit

Permalink
Merge branch 'release-1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessa committed Sep 8, 2016
2 parents 7721c93 + 8ac43c5 commit 3ce3a09
Show file tree
Hide file tree
Showing 811 changed files with 11,714 additions and 8,715 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
/public/latex/*.gz
/public/latex/index.pdf
/public/latex/history.pdf
/public/sitemap*

#checklist downloads
/public/downloads/checklist/*.*
Expand Down
2 changes: 1 addition & 1 deletion .hound.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ruby:
enabled: true
config_file: .rubocop_todo.yml
config_file: .rubocop.yml
83 changes: 83 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,87 @@
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.2
Exclude:
- 'lib/tasks/bbgem.rake'
- 'db/schema.rb'
- 'old_cap/*'

Style/StringLiterals:
EnforcedStyle: single_quotes

# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: outdent, indent
Style/AccessModifierIndentation:
EnforcedStyle: indent

# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: special_inside_parentheses, consistent, align_brackets
Style/IndentArray:
EnforcedStyle: consistent

# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: special_inside_parentheses, consistent, align_braces
Style/IndentHash:
EnforcedStyle: consistent

# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: normal, rails
Style/IndentationConsistency:
EnforcedStyle: normal
Exclude:
- 'db/migrate/*'
- 'config/initializers/normalise_blank_values.rb'

# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: symmetrical, new_line, same_line
Style/MultilineArrayBraceLayout:
EnforcedStyle: symmetrical

# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: symmetrical, new_line, same_line
Style/MultilineHashBraceLayout:
EnforcedStyle: symmetrical

# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: always, conditionals
Style/AndOr:
Exclude:
- 'db/migrate/*'

# Offense count: 551
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: leading, trailing
Style/DotPosition:
EnforcedStyle: trailing

# Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
Style/ExtraSpacing:
AllowForAlignment: true
Exclude:
- 'db/migrate/*'

# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
# SupportedStyles: consistent, special_for_inner_method_call, special_for_inner_method_call_in_parentheses
Style/FirstParameterIndentation:
Enabled: true

# Configuration parameters: Width.
Style/IndentationWidth:
Exclude:
- 'db/migrate/*'

# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SupportedStyles.
# SupportedStyles: space, no_space
Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: space
EnforcedStyleForEmptyBraces: no_space

# Configuration parameters: AllowForAlignment.
Style/SpaceAroundOperators:
AllowForAlignment: true

# Configuration parameters: AllowIfMethodIsEmpty.
Style/SingleLineMethods:
AllowIfMethodIsEmpty: true
Loading

0 comments on commit 3ce3a09

Please sign in to comment.