Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…form.today

Conflicts:
	feed.json
	package.json
  • Loading branch information
Nevraeka committed Jan 2, 2015
2 parents 86c549f + 9a28185 commit aca5318
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 6,074 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
39 changes: 39 additions & 0 deletions .jscs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"disallowKeywords": ["with"],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
"disallowNewlineBeforeBlockStatements": true,
"disallowSpaceAfterObjectKeys": true,
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforeBinaryOperators": [","],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInNamedFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInsideArrayBrackets": true,
"disallowSpacesInsideParentheses": true,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"requireCommaBeforeLineBreak": true,
"requireLineFeedAtFileEnd": true,
"requireSpaceAfterBinaryOperators": ["?", ":", "+", "-", "/", "*", "%", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "&&", "||"],
"requireSpaceBeforeBinaryOperators": ["?", ":", "+", "-", "/", "*", "%", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "&&", "||"],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"requireSpaceBeforeBlockStatements": true,
"requireSpacesInConditionalExpression": {
"afterTest": true,
"beforeConsequent": true,
"afterConsequent": true,
"beforeAlternate": true
},
"requireSpacesInFunction": {
"beforeOpeningCurlyBrace": true
},
"validateLineBreaks": "LF"
}
23 changes: 23 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"bitwise": true,
"immed": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"trailing": true,
"maxlen": 200,
"boss": true,
"eqnull": true,
"expr": true,
"globalstrict": false,
"laxbreak": true,
"loopfunc": true,
"sub": true,
"undef": true,
"indent": 2,
"globals": {
"require": false,
"console": false
}
}
9 changes: 9 additions & 0 deletions .travis.yml_starter
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
deploy:
provider: divshot
environment:
master: development
staging: staging
production: production
skip_cleanup: true
api_key:
secure: ICv6mHC6+T+fACIBmwOgp3j1SUwj7QKvOmnKURchbMWWgnKk6+40OCkN9IaWePt2j/IXBarmrS6cxI6xIiaM0V2UgGciPbaq0HISdMdpmDE5U0eJ+AhBAIqAY6NeyWIP2lk4Oji0gMXRUtH6MxXvqE3k5pkkOW+Ox/qB3pU9MO8=
Loading

0 comments on commit aca5318

Please sign in to comment.