Skip to content

Commit

Permalink
configured subutai e2e browser plugins for chrome,firefox and safari
Browse files Browse the repository at this point in the history
  • Loading branch information
TalasZh committed Mar 6, 2016
0 parents commit f49a44b
Show file tree
Hide file tree
Showing 211 changed files with 48,734 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
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
14 changes: 14 additions & 0 deletions .gitignore
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/
6 changes: 6 additions & 0 deletions .gitmodules
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
59 changes: 59 additions & 0 deletions .jscs.json
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
}
2 changes: 2 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
common/ui/d3.js
common/ui/d3.min.js
48 changes: 48 additions & 0 deletions .jshintrc
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
}

}
Loading

0 comments on commit f49a44b

Please sign in to comment.