From b108da450d1439901f252a86fd9fbd89a36ee288 Mon Sep 17 00:00:00 2001 From: FG Ribreau Date: Tue, 23 Dec 2014 22:33:32 +0100 Subject: [PATCH] chore(dotfiles) --- .checkbuild | 25 ++++++++++ .editorconfig | 20 ++++++++ .jsbeautifyrc | 16 ++++++ .jshintrc | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++ .nvmrc | 1 + 5 files changed, 195 insertions(+) create mode 100644 .checkbuild create mode 100644 .editorconfig create mode 100644 .jsbeautifyrc create mode 100644 .jshintrc create mode 100644 .nvmrc diff --git a/.checkbuild b/.checkbuild new file mode 100644 index 0000000..ac1dabe --- /dev/null +++ b/.checkbuild @@ -0,0 +1,25 @@ +{ + "checkbuild": { + "enable": ["jshint", "jscs", "jsinspect", "nsp"], + // don't exit immediately if one of the tools reports an error + "continueOnError": true, + // don't exit(1) even if we had some failures + "allowFailures": false + }, + "jshint": { + "args": ["**/*.js", "!*assets/vendor/**", "!*node_modules/**", "!*assets/javascript/**"] + }, + "jscs": { + "args": ["**/*.js", "!*assets/vendor/**", "!*node_modules/**"] + }, + "jsinspect": { + "args": ["**/*.js", "!*assets/vendor/**", "!*node_modules/**", "!*assets/javascript/**", "!*assets/i18n/**"], + "diff": true, + "threshold": 40 + }, + "buddyjs": { + "args": ["**/*.js", "!*assets/vendor/**", "!*node_modules/**"], + "ignore": [0, 1, 200] + }, + "nsp": {} +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ab21c5e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# 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 + +# 4 space indentation +[*.js] +indent_style = space +indent_size = 2 + + +# Indentation override for all JS under lib directory +#[lib/**.js] +#indent_style = space +#indent_size = 2 diff --git a/.jsbeautifyrc b/.jsbeautifyrc new file mode 100644 index 0000000..ee0ae9e --- /dev/null +++ b/.jsbeautifyrc @@ -0,0 +1,16 @@ +{ + "indent_with_tabs": false, + "max_preserve_newlines": 4, + "preserve_newlines": true, + "space_in_paren": false, + "jslint_happy": true, + "brace_style": "collapse", + "keep_array_indentation": true, + "keep_function_indentation": true, + "eval_code": false, + "unescape_strings": false, + "break_chained_methods": false, + "e4x": false, + "wrap_line_length": 0, + "format_on_save":true +} diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..44a8434 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,133 @@ +{ + "maxerr" : 50, // {int} Maximum error before stopping + + // Enforcing + "bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) + "camelcase" : false, // true: Identifiers must be in camelCase + "curly" : true, // true: Require {} for every new block or scope + "eqeqeq" : true, // true: Require triple equals (===) for comparison + "forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty() + "immed" : false, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` + "indent" : 2, // {int} Number of spaces to use for indentation + "latedef" : false, // true: Require variables/functions to be defined before being used + "newcap" : false, // true: Require capitalization of all constructor functions e.g. `new F()` + "noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` + "noempty" : true, // true: Prohibit use of empty blocks + "nonew" : false, // true: Prohibit use of constructors for side-effects (without assignment) + "plusplus" : false, // true: Prohibit use of `++` & `--` + "quotmark" : false, // Quotation mark consistency: + // false : do nothing (default) + // true : ensure whatever is used is consistent + // "single" : require single quotes + // "double" : require double quotes + "undef" : true, // true: Require all non-global variables to be declared (prevents global leaks) + "unused" : true, // true: Require all defined variables be used + "strict" : true, // true: Requires all functions run in ES5 Strict Mode + "trailing" : false, // true: Prohibit trailing whitespaces + "maxparams" : 5, // {int} Max number of formal params allowed per function + "maxdepth" : 4, // {int} Max depth of nested blocks (within functions) + "maxstatements" : 25, // {int} Max number statements per function + "maxcomplexity" : 6, // {int} Max cyclomatic complexity per function + "maxlen" : false, // {int} Max number of characters per line + + // Relaxing + "asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons) + "boss" : false, // true: Tolerate assignments where comparisons would be expected + "debug" : false, // true: Allow debugger statements e.g. browser breakpoints. + "eqnull" : false, // true: Tolerate use of `== null` + "es5" : false, // true: Allow ES5 syntax (ex: getters and setters) + "esnext" : false, // true: Allow ES.next (ES6) syntax (ex: `const`) + "moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features) + // (ex: `for each`, multiple try/catch, function expression…) + "evil" : false, // true: Tolerate use of `eval` and `new Function()` + "expr" : false, // true: Tolerate `ExpressionStatement` as Programs + "funcscope" : false, // true: Tolerate defining variables inside control statements" + "globalstrict" : true, // true: Allow global "use strict" (also enables 'strict') + "iterator" : false, // true: Tolerate using the `__iterator__` property + "lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block + "laxbreak" : false, // true: Tolerate possibly unsafe line breakings + "laxcomma" : true, // true: Tolerate comma-first style coding + "loopfunc" : false, // true: Tolerate functions being defined in loops + "multistr" : true, // true: Tolerate multi-line strings + "proto" : false, // true: Tolerate using the `__proto__` property + "scripturl" : false, // true: Tolerate script-targeted URLs + "smarttabs" : false, // true: Tolerate mixed tabs/spaces when used for alignment + "shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` + "sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation + "supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;` + "validthis" : false, // true: Tolerate using this in a non-constructor function + + // Environments + "browser" : true, // Web Browser (window, document, etc) + "couch" : false, // CouchDB + "devel" : true, // Development/debugging (alert, confirm, etc) + "dojo" : false, // Dojo Toolkit + "jquery" : false, // jQuery + "mootools" : false, // MooTools + "node" : true, // Node.js + "nonstandard" : false, // Widely adopted globals (escape, unescape, etc) + "prototypejs" : false, // Prototype and Scriptaculous + "rhino" : false, // Rhino + "worker" : false, // Web Workers + "wsh" : false, // Windows Scripting Host + "yui" : false, // Yahoo User Interface + + // Legacy + "nomen" : false, // true: Prohibit dangling `_` in variables + "onevar" : false, // true: Allow only one `var` statement per function + "passfail" : false, // true: Stop on first error + "white" : false, // true: Check against strict whitespace and indentation rules + + // Custom Globals + "predef" : [ + "Buffer", + "view", + "test", + "factoryKey", + "RedisStub", + "equal", + "strictEqual", + "ok", + "deepEqual", + "expect", + "checkGrid", + + "describe", + "beforeEach", + "afterEach", + "it", + + "module", + "prompt", + "require", + "exports", + "console", + "__dirname", + "process", + "setInterval", + "setTimeout", + "clearTimeout", + "Redsmin", + "window", + "Backbone", + "bootbox", + "Highcharts", + "ReadLine", + "CodeMirror", + "$", + "jQuery", + "document", + "angular", + "alert", + "grunt", + "escape", + "walk", + "deepStrictEqual", + "returnfalse", + "forEachAsync", + "humanize", + "Mousetrap", + "store", + "Slick", + "Slickback"] // additional predefined global variables +} diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..9097bf9 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v0.10