Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# EditorConfig: http://EditorConfig.org

# top-most EditorConfig file
root = true

# all files defaults
[**]

# Unix-style newlines with a newline ending
end_of_line = lf
insert_final_newline = true

# Set default charset
charset = utf-8

# 4 space indentation
indent_style = space
indent_size = 2

# trim whitespaces
trim_trailing_whitespace = true

# always insert final newline
insert_final_newline = true
32 changes: 32 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"preset": "google",
"fileExtensions": [".js"],

"excludeFiles": [],

"maximumLineLength": 120,

"validateLineBreaks": "LF",
"validateIndentation": 2,
"validateQuoteMarks": "'",

"requireParenthesesAroundIIFE": true,
"requireBlocksOnNewline": true,
"requireCapitalizedConstructors": true,
"requireDotNotation": true,
"requireCommaBeforeLineBreak": true,

"disallowEmptyBlocks": true,
"disallowMultipleVarDecl": true,
"disallowKeywords": ["with"],
"disallowQuotedKeysInObjects": true,
"disallowSpaceAfterObjectKeys": true,
"disallowKeywordsOnNewLine": ["else", "catch"],
"disallowYodaConditions": true,
"disallowNewlineBeforeBlockStatements": true,
"disallowImplicitTypeConversion": ["numeric", "boolean", "binary", "string"],
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": false,
"beforeOpeningCurlyBrace": false
}
}
59 changes: 59 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
// Settings
"maxerr": 10000, // Maximum error before stopping.

// Predefined globals whom JSHint will ignore.
"browser": false, // Standard browser globals e.g. `window`, `document`.
"node": true, // node predefined stuff

"predef": [ // Custom globals.
"module",
"exports",
"require"
],

// Development.
"debug": false, // Allow debugger statements e.g. browser breakpoints.
"devel": false, // Allow developments statements e.g. `console.log();`.

// ECMAScript 5.
"strict": false, // Require `use strict` pragma in every file.
"globalstrict": false, // Allow global "use strict" (also enables "strict").

// The Good Parts.
"asi": false, // Tolerate Automatic Semicolon Insertion (no semicolons).
"laxbreak": false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
"bitwise": false, // Prohibit bitwise operators (&, |, ^, etc.).
"boss": false, // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
"curly": false, // Require {} for every new block or scope.
"eqeqeq": true, // Require triple equals i.e. `===`.
"eqnull": false, // Tolerate use of `== null`.
"evil": false, // Tolerate use of `eval`.
"expr": false, // Tolerate `ExpressionStatement` as Programs.
"forin": false, // Tolerate `for in` loops without `hasOwnPrototype`.
"immed": true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
"latedef": true, // Prohibit variable use before definition.
"loopfunc": false, // Allow functions to be defined within loops.
"noarg": true, // Prohibit use of `arguments.caller` and `arguments.callee`.
"regexp": true, // Prohibit `.` and `[^...]` in regular expressions.
"regexdash": false, // Tolerate unescaped last dash i.e. `[-...]`.
"scripturl": false, // Tolerate script-targeted URLs.
"shadow": false, // Allows re-define variables later in code e.g. `var x=1; x=2;`.
"supernew": false, // Tolerate `new function () { ... };` and `new Object;`.
"undef": true, // Require all non-global variables be declared before they are used.
"unused": true, // Warn about unused vars
"freeze": true, // Prohibits overwriting prototypes of native objects

// Personal styling preferences.
"newcap": false, // Require capitalization of all constructor functions e.g. `new F()`.
"noempty": true, // Prohibit use of empty blocks.
"nonbsp": true, // Prohibit use of non-breaking space.
"nonew": false, // Prohibit use of constructors for side-effects.
"plusplus": false, // Prohibit use of `++` & `--`.
"sub": false, // Tolerate all forms of subscript notation besides dot notation e.g. `dict["key"]` instead of `dict.key`.
"indent": 2, // Specify indentation spacing
"camelcase": true, // allow only camelCase vars
"quotmark": true, // enforce quote consistency
"maxparams": 5, // allow 5 max function params
"maxdepth": 3 // allow max depth of functions 3
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
language: node_js
node_js:
- "0.10"
- "0.12"
1 change: 0 additions & 1 deletion build

This file was deleted.

Loading