remove more unneeded files
This commit is contained in:
parent
b23284cba2
commit
db9c2992e3
@ -1,17 +0,0 @@
|
|||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
charset = utf-8
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
indent_style = space
|
|
||||||
|
|
||||||
[*.{js,json}]
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
[*.{yml}]
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
trim_trailing_whitespace = false
|
|
13
library/moment/.gitignore
vendored
13
library/moment/.gitignore
vendored
@ -1,13 +0,0 @@
|
|||||||
node_modules/
|
|
||||||
.DS_Store
|
|
||||||
min/moment+customlangs.js
|
|
||||||
min/moment+customlangs.min.js
|
|
||||||
sauce_connect.log
|
|
||||||
.sauce-labs.creds
|
|
||||||
npm-debug.log
|
|
||||||
.build*
|
|
||||||
build
|
|
||||||
coverage
|
|
||||||
nyc_output
|
|
||||||
.nyc_output
|
|
||||||
.coveralls.yml
|
|
@ -1,67 +0,0 @@
|
|||||||
{
|
|
||||||
"requireCurlyBraces": [
|
|
||||||
"if",
|
|
||||||
"else",
|
|
||||||
"for",
|
|
||||||
"while",
|
|
||||||
"do",
|
|
||||||
"try",
|
|
||||||
"catch"
|
|
||||||
],
|
|
||||||
"requireSpaceAfterKeywords": [
|
|
||||||
"if",
|
|
||||||
"else",
|
|
||||||
"for",
|
|
||||||
"while",
|
|
||||||
"do",
|
|
||||||
"switch",
|
|
||||||
"return",
|
|
||||||
"try",
|
|
||||||
"catch"
|
|
||||||
],
|
|
||||||
"requireSpaceBeforeBlockStatements": true,
|
|
||||||
"requireParenthesesAroundIIFE": true,
|
|
||||||
"requireSpacesInConditionalExpression": true,
|
|
||||||
"requireSpacesInAnonymousFunctionExpression": {
|
|
||||||
"beforeOpeningRoundBrace": true,
|
|
||||||
"beforeOpeningCurlyBrace": true
|
|
||||||
},
|
|
||||||
"requireSpacesInNamedFunctionExpression": {
|
|
||||||
"beforeOpeningCurlyBrace": true
|
|
||||||
},
|
|
||||||
"disallowSpacesInNamedFunctionExpression": {
|
|
||||||
"beforeOpeningRoundBrace": true
|
|
||||||
},
|
|
||||||
"requireBlocksOnNewline": true,
|
|
||||||
"disallowPaddingNewlinesInBlocks": true,
|
|
||||||
"disallowEmptyBlocks": true,
|
|
||||||
"disallowSpacesInsideObjectBrackets": true,
|
|
||||||
"disallowSpacesInsideArrayBrackets": true,
|
|
||||||
"disallowSpacesInsideParentheses": true,
|
|
||||||
"requireCommaBeforeLineBreak": true,
|
|
||||||
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
|
|
||||||
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
|
||||||
"requireSpaceBeforeBinaryOperators": [
|
|
||||||
"=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=",
|
|
||||||
"&=", "|=", "^=",
|
|
||||||
|
|
||||||
"+", "-", "*", "/", "%", "<<", ">>", ">>>", "&",
|
|
||||||
"|", "^", "&&", "||", "===", "==", ">=",
|
|
||||||
"<=", "<", ">", "!=", "!=="
|
|
||||||
],
|
|
||||||
"requireSpaceAfterBinaryOperators": true,
|
|
||||||
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
|
|
||||||
"disallowKeywords": ["with"],
|
|
||||||
"disallowMultipleLineStrings": true,
|
|
||||||
"validateLineBreaks": "LF",
|
|
||||||
"validateIndentation": 4,
|
|
||||||
"disallowTrailingWhitespace": true,
|
|
||||||
"disallowTrailingComma": true,
|
|
||||||
"requireLineFeedAtFileEnd": true,
|
|
||||||
"requireCapitalizedConstructors": true,
|
|
||||||
"validateQuoteMarks": {
|
|
||||||
"mark": "'",
|
|
||||||
"escape": true
|
|
||||||
},
|
|
||||||
"esnext": true
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
{
|
|
||||||
"node" : true,
|
|
||||||
"browser" : true,
|
|
||||||
"boss" : false,
|
|
||||||
"curly" : true,
|
|
||||||
"debug" : false,
|
|
||||||
"devel" : false,
|
|
||||||
"eqeqeq" : true,
|
|
||||||
"eqnull" : true,
|
|
||||||
"esnext" : true,
|
|
||||||
"evil" : false,
|
|
||||||
"forin" : false,
|
|
||||||
"immed" : false,
|
|
||||||
"laxbreak" : false,
|
|
||||||
"newcap" : true,
|
|
||||||
"noarg" : true,
|
|
||||||
"noempty" : false,
|
|
||||||
"nonew" : false,
|
|
||||||
"onevar" : true,
|
|
||||||
"plusplus" : false,
|
|
||||||
"regexp" : false,
|
|
||||||
"undef" : true,
|
|
||||||
"sub" : true,
|
|
||||||
"strict" : false,
|
|
||||||
"white" : true,
|
|
||||||
"es3" : false,
|
|
||||||
"camelcase" : true,
|
|
||||||
"globals": {
|
|
||||||
"define": false
|
|
||||||
}
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
test
|
|
@ -1,8 +0,0 @@
|
|||||||
benchmarks
|
|
||||||
bower_components
|
|
||||||
meteor
|
|
||||||
min
|
|
||||||
node_modules
|
|
||||||
scripts
|
|
||||||
tasks
|
|
||||||
test
|
|
@ -1,20 +0,0 @@
|
|||||||
language: node_js
|
|
||||||
node_js:
|
|
||||||
- "0.10"
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
- secure: "M4STT2TOZxjzv3cZOgSVi0J4j6enrGjgE+p5YTNUw+S6Dg6FS5pTIPeafu1kGhfm7F0uk7xPVwGKYb+3uWNO9IhkKXz8jySMMQ2iKISHwECGNNuFNjSMD1vIjbIkLwV8TyPO/PurQg2s+WtYz+DoAZsDFKpdaRUtif64OjdQ3vQ="
|
|
||||||
- secure: "V+i7kHoGe7VXWGplPNqJz+aDtgDF9Dh9/guoaf2BPyXLvkFW6VgMjJyoNUW7JVsakrWzAz2ubb734vAPDt7BCcFQ2BqfatOmabdFogviCaXC6IqVaEkYS2eSP7MIUPIeWJgnTrDGzkFMDk4K7y5SiVJ8UmYwZxe+tJV7kbb0Yig="
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- npm install -g grunt-cli
|
|
||||||
|
|
||||||
script: grunt build:travis
|
|
||||||
|
|
||||||
git:
|
|
||||||
depth: 10
|
|
||||||
|
|
||||||
# TODO: Fix problem with coveralls.io not displaying autogenerated files
|
|
||||||
# after_success: npm run coveralls
|
|
Reference in New Issue
Block a user