-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configured subutai e2e browser plugins for chrome,firefox and safari
- Loading branch information
0 parents
commit f49a44b
Showing
211 changed files
with
48,734 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*~ | ||
.directory | ||
*.sublime* | ||
.svn | ||
bower_components | ||
node_modules/ | ||
tmp/ | ||
build/ | ||
apidoc/ | ||
.idea/ | ||
atlassian-ide-plugin.xml | ||
cert/ | ||
.DS_Store | ||
nightly/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "dep/chrome/openpgpjs"] | ||
path = dep/chrome/openpgpjs | ||
url = git://github.com/mailvelope/openpgpjs.git | ||
[submodule "dep/firefox/openpgpjs"] | ||
path = dep/firefox/openpgpjs | ||
url = git://github.com/mailvelope/openpgpjs.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"requireCurlyBraces": [ | ||
"if", | ||
"else", | ||
"for", | ||
"while", | ||
"do", | ||
"try", | ||
"catch" | ||
], | ||
"requireOperatorBeforeLineBreak": true, | ||
"validateIndentation": 2, | ||
|
||
"disallowMixedSpacesAndTabs": true, | ||
"disallowTrailingWhitespace": true, | ||
"disallowSpaceAfterPrefixUnaryOperators": true, | ||
|
||
"requireSpaceAfterKeywords": [ | ||
"if", | ||
"else", | ||
"for", | ||
"while", | ||
"do", | ||
"switch", | ||
"return", | ||
"try", | ||
"catch" | ||
], | ||
"requireSpaceBeforeBinaryOperators": [ | ||
"=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=", | ||
"&=", "|=", "^=", "+=", | ||
|
||
"+", "-", "*", "/", "%", "<<", ">>", ">>>", "&", | ||
"|", "^", "&&", "||", "===", "==", ">=", | ||
"<=", "<", ">", "!=", "!==" | ||
], | ||
"requireSpaceAfterBinaryOperators": true, | ||
"requireSpacesInConditionalExpression": true, | ||
"requireSpaceBeforeBlockStatements": true, | ||
"requireLineFeedAtFileEnd": true, | ||
"requireSpacesInFunctionExpression": { | ||
"beforeOpeningCurlyBrace": true | ||
}, | ||
"disallowSpacesInAnonymousFunctionExpression": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowSpacesInsideObjectBrackets": "nested", | ||
"disallowSpacesInsideArrayBrackets": "all", | ||
"disallowSpacesInsideParentheses": { "only": [ "{", "}" ] }, | ||
|
||
|
||
"validateJSDoc": { | ||
"checkParamNames": true, | ||
"requireParamTypes": true | ||
}, | ||
|
||
"disallowMultipleLineBreaks": true, | ||
"disallowNewlineBeforeBlockStatements": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
common/ui/d3.js | ||
common/ui/d3.min.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
// JSHint Configuration File | ||
// See http://jshint.com/docs/ for more details | ||
|
||
"maxerr" : 5, // {int} Maximum error before stopping | ||
|
||
// Enforcing | ||
"curly" : true, // true: Require {} for every new block or scope | ||
"immed" : true, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` | ||
"indent" : 2, // {int} Number of spaces to use for indentation | ||
"newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()` | ||
"noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` | ||
"nonbsp" : true, // true: Prohibit "non-breaking whitespace" characters. | ||
"nonew" : true, // true: Prohibit use of constructors for side-effects (without assignment) | ||
// "es5" :true, | ||
|
||
// Relaxing | ||
"boss" : true, // true: Tolerate assignments where comparisons would be expected | ||
"debug" : true, // true: Allow debugger statements e.g. browser breakpoints. | ||
"esnext" : true, // true: Allow ES.next (ES6) syntax (ex: `const`) | ||
"evil" : true, // true: Tolerate use of `eval` and `new Function()` | ||
"expr" : true, // true: Tolerate `ExpressionStatement` as Programs | ||
"globalstrict" : true, // true: Allow global "use strict" (also enables 'strict') | ||
"multistr" : true, // true: Tolerate multi-line strings | ||
"shadow" : true, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` | ||
"validthis" : true, // true: Tolerate using this in a non-constructor function | ||
"loopfunc" : true, // true: Tolerate functions within loops | ||
|
||
// Environments | ||
"browser" : true, // Web Browser (window, document, etc) | ||
"devel" : true, // Development/debugging (alert, confirm, etc) | ||
"jquery" : true, // jQuery | ||
"node" : true, // Node.js | ||
"nonstandard" : true, // Widely adopted globals (escape, unescape, etc) | ||
|
||
// Custom Globals | ||
"globals": { | ||
"define": false, | ||
"requirejs": false, | ||
"self": false, | ||
"chrome": false, | ||
"addon": false, | ||
"safari": false, | ||
"performance": false, | ||
"File": false | ||
} | ||
|
||
} |
Oops, something went wrong.