Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
Eileen Bolloff committed Jan 26, 2016
2 parents c1d0ca2 + b53cd7c commit 96f0487
Show file tree
Hide file tree
Showing 197 changed files with 12,397 additions and 5,999 deletions.
98 changes: 98 additions & 0 deletions .coffeescript-style.json
@@ -0,0 +1,98 @@
{
"arrow_spacing": {
"level": "error"
},
"camel_case_classes": {
"level": "error"
},
"coffeescript_error": {
"level": "error"
},
"colon_assignment_spacing": {
"level": "error",
"spacing": {
"left": 0,
"right": 1
}
},
"cyclomatic_complexity": {
"level": "ignore",
"value": 10
},
"duplicate_key": {
"level": "error"
},
"empty_constructor_needs_parens": {
"level": "ignore"
},
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "ignore",
"value": "unix"
},
"max_line_length": {
"level": "error",
"value": 80
},
"missing_fat_arrows": {
"level": "ignore"
},
"newlines_after_classes": {
"level": "error",
"value": 1
},
"no_backticks": {
"level": "ignore"
},
"no_debugger": {
"level": "error"
},
"no_empty_functions": {
"level": "error"
},
"no_empty_param_list": {
"level": "error"
},
"no_implicit_braces": {
"level": "ignore"
},
"no_implicit_parens": {
"level": "ignore"
},
"no_interpolation_in_single_quotes": {
"level": "error"
},
"no_plusplus": {
"level": "ignore"
},
"no_stand_alone_at": {
"level": "error"
},
"no_tabs": {
"level": "error"
},
"no_throwing_strings": {
"level": "error"
},
"no_trailing_semicolons": {
"level": "error"
},
"no_trailing_whitespace": {
"level": "error"
},
"no_unnecessary_double_quotes": {
"level": "ignore"
},
"no_unnecessary_fat_arrows": {
"level": "error"
},
"non_empty_constructor_needs_parens": {
"level": "ignore"
},
"space_operators": {
"level": "ignore"
}
}
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -48,6 +48,9 @@ tmp/*
*.toc
*~

# Ignore pdf generated by rails-erd
erd.pdf

# Ignore local configuration files
config/settings.local.yml
config/settings/*.local.yml
Expand Down
70 changes: 70 additions & 0 deletions .haml-lint.yml
@@ -0,0 +1,70 @@
# Whether to ignore frontmatter at the beginning of HAML documents for
# frameworks such as Jekyll/Middleman
skip_frontmatter: false

linters:
AltText:
enabled: false

ClassAttributeWithStaticValue:
enabled: true

ClassesBeforeIds:
enabled: true

ConsecutiveComments:
enabled: true

ConsecutiveSilentScripts:
enabled: true
max_consecutive: 2

EmptyScript:
enabled: true

HtmlAttributes:
enabled: true

ImplicitDiv:
enabled: true

LeadingCommentSpace:
enabled: true

LineLength:
enabled: false
max: 80

MultilinePipe:
enabled: true

MultilineScript:
enabled: true

ObjectReferenceAttributes:
enabled: true

RuboCop:
enabled: false

RubyComments:
enabled: true

SpaceBeforeScript:
enabled: true

SpaceInsideHashAttributes:
enabled: true
style: space

TagName:
enabled: true

TrailingWhitespace:
enabled: true

UnnecessaryInterpolation:
enabled: true

UnnecessaryStringOutput:
enabled: true

0 comments on commit 96f0487

Please sign in to comment.