Skip to content
Open
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
18 changes: 18 additions & 0 deletions .jsbeautifyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"indent_size": 2,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 2,
"jslint_happy": true,
"brace_style": "collapse",
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"spaceInParen": false,
"break_chained_methods": false,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0
}
86 changes: 86 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"requireCurlyBraces": [
"if",
"else",
"for",
"while",
"do",
"try",
"catch"
],
"requireSpaceAfterKeywords": [
"if",
"else",
"for",
"while",
"do",
"switch",
"case",
"return",
"try",
"catch",
"function",
"typeof"
],
"requireSpaceBeforeBlockStatements": true,
"requireParenthesesAroundIIFE": true,
"requireSpacesInConditionalExpression": true,
"disallowSpacesInNamedFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true
},
"requireBlocksOnNewline": 1,
"disallowEmptyBlocks": true,
"disallowSpacesInsideArrayBrackets": "all",
"disallowSpacesInsideParentheses": true,
"disallowQuotedKeysInObjects": true,
"disallowSpaceAfterObjectKeys": true,
"requireCommaBeforeLineBreak": true,
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpaceBeforeBinaryOperators": [
","
],
"requireSpaceBeforeBinaryOperators": [
"=",
"+",
"-",
"/",
"*",
"==",
"===",
"!=",
"!=="
],
"requireSpaceAfterBinaryOperators": [
"=",
"+",
"-",
"/",
"*",
"==",
"===",
"!=",
"!=="
],
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"disallowKeywords": [ "with" ],
"disallowMultipleLineBreaks": true,
"validateLineBreaks": "LF",
"validateQuoteMarks": "'",
"validateIndentation": 2,
"disallowMixedSpacesAndTabs": "smart",
"disallowTrailingWhitespace": true,
"disallowKeywordsOnNewLine": [ "else" ],
"requireLineFeedAtFileEnd": true,
"requireCapitalizedConstructors": true,
"disallowNewlineBeforeBlockStatements": true,
"requireDotNotation": null,
"disallowYodaConditions": true,
"excludeFiles": [
"node_modules/**",
"public/mobileApp/main/bower_components"
]
}
5 changes: 5 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bower_components
node_modules/**
**/node_modules/**
test
**/test/**
98 changes: 98 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
// JSHint Default Configuration File (as on JSHint website)
// See http://jshint.com/docs/ for more details

"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": true, // 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": "single", // 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
"maxparams": false, // {int} Max number of formal params allowed per function
"maxdepth": 4, // {int} Max depth of nested blocks (within functions)
"maxstatements": 30, // {int} Max number statements per function
"maxcomplexity": false, // {int} Max cyclomatic complexity per function
"maxlen": 100, // {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": false, // 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": false, // true: Tolerate comma-first style coding
"loopfunc": false, // true: Tolerate functions being defined in loops
"multistr": false, // true: Tolerate multi-line strings
"proto": false, // true: Tolerate using the `__proto__` property
"scripturl": false, // true: Tolerate script-targeted URLs
"shadow": false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;`
"sub": true, // true: Tolerate using `[]` notation when it can still be expressed in dot notation
"supernew": false, // true: Tolerate `new function () { ... };` and `new Object;`
"validthis": true, // true: Tolerate using this in a non-constructor function

// Environments
"browser": false, // Web Browser (window, document, etc)
"couch": false, // CouchDB
"devel": false, // 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

// Custom Globals
// additional predefined global variables
"globals": {
"Promise": true,
"window": true,
"FormData": true,
"Modernizr": true,
"XMLHttpRequest": true,
"html2canvas": true,
"jQuery": true,
"module": true,
"devel": false,
"document": false,
"$": true,
"alert": true,
"describe": true,
"it": true,
"moment": true,
"successModal": true,
"errorModal": true,
"spinnerModal": true
}
}
86 changes: 86 additions & 0 deletions GruntFile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
'use strict';

var fs = require('fs');

module.exports = function (grunt) {
// js targets
var projectJsFiles = [
'./Gruntfile.js',
'./app/controllers/**/*.js',
'./app/genControllers/**/*.js',
'./app/genModels/**/*.js',
'./app/mailer/index.js',
'./app/models/**/*.js',
'./app/modelTemplates/articleTemp.js',
'./config/**/*.js',
'./configLib/**/*.js',
'./lib/**/*.js',
'./test/**/*.js'
];

// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

jsvalidate: {
options: {
globals: {},
esprimaOptions: {},
verbose: false
},
targetName: {
files: {
src: ['<%=jshint.all%>']
}
}
},

jsbeautifier: {
modify: {
src: ['<%=jshint.all%>'],
options: {
config: '.jsbeautifyrc'
}
},
verify: {
src: ['<%=jshint.all%>'],
options: {
mode: 'VERIFY_ONLY',
config: '.jsbeautifyrc'
}
}
},

jscs: {
options: {
config: '.jscsrc'
},
files: ['<%=jshint.all%>']
},

jshint: { // Explanations at http://jslinterrors.com/
all: projectJsFiles,
options: {
jshintrc: '.jshintrc' // relative to Gruntfile
}
}
});

// Load the plugins
require('load-grunt-tasks')(grunt, {
scope: 'devDependencies'
});
require('time-grunt')(grunt);

// task(s).

// clean
grunt.registerTask('clean', [
'jsvalidate',
'jshint',
'jsbeautifier:verify',
'jscs'
]);

grunt.registerTask('format', ['jsbeautifier:modify']);
};
Loading