2016-12-14 17:39:17 +01:00
|
|
|
{
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 6,
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"impliedStrict": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"jquery": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": false
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
// enable additional rules
|
|
|
|
"no-eval": "error",
|
|
|
|
"no-implied-eval": "error",
|
|
|
|
"dot-notation": "error",
|
|
|
|
"eqeqeq": ["error", "smart"],
|
|
|
|
"no-caller": "error",
|
|
|
|
"no-extra-bind": "error",
|
|
|
|
"no-unused-expressions": "error",
|
|
|
|
"no-useless-call": "error",
|
|
|
|
"no-useless-return": "error",
|
|
|
|
"radix": "warn",
|
|
|
|
|
|
|
|
// modify rules from base configurations
|
|
|
|
"no-unused-vars": ["error", {
|
|
|
|
"args": "none",
|
|
|
|
"vars": "local"
|
|
|
|
}],
|
|
|
|
"no-empty": ["error", {
|
|
|
|
"allowEmptyCatch": true
|
|
|
|
}],
|
|
|
|
|
|
|
|
// disable rules from base configurations
|
|
|
|
"no-console": "off",
|
|
|
|
"no-control-regex": "off",
|
|
|
|
|
|
|
|
// stylistic conventions
|
|
|
|
"brace-style": ["error", "1tbs"],
|
|
|
|
"block-spacing": "error",
|
|
|
|
"array-bracket-spacing": "error",
|
|
|
|
"comma-spacing": "error",
|
|
|
|
"comma-style": "error",
|
|
|
|
"computed-property-spacing": "error",
|
2017-02-09 16:09:33 +01:00
|
|
|
"no-trailing-spaces": "warn",
|
2016-12-14 17:39:17 +01:00
|
|
|
"eol-last": "error",
|
|
|
|
"func-call-spacing": "error",
|
|
|
|
"indent": ["error", 4, {
|
|
|
|
"ArrayExpression": "first",
|
|
|
|
"SwitchCase": 1
|
|
|
|
}],
|
|
|
|
"linebreak-style": ["error", "unix"],
|
|
|
|
"quotes": ["error", "double", {
|
|
|
|
"avoidEscape": true
|
|
|
|
}],
|
2017-01-31 19:24:56 +01:00
|
|
|
"camelcase": ["error", {
|
|
|
|
"properties": "always"
|
|
|
|
}],
|
2016-12-14 17:39:17 +01:00
|
|
|
"semi": ["error", "always"],
|
2017-02-07 21:31:15 +01:00
|
|
|
"unicode-bom": "error",
|
|
|
|
"require-jsdoc": ["error", {
|
|
|
|
"require": {
|
|
|
|
"FunctionDeclaration": true,
|
|
|
|
"MethodDefinition": true,
|
|
|
|
"ClassDeclaration": true,
|
|
|
|
"ArrowFunctionExpression": true
|
|
|
|
}
|
2017-02-09 16:09:33 +01:00
|
|
|
}],
|
|
|
|
"keyword-spacing": ["error", {
|
|
|
|
"before": true,
|
|
|
|
"after": true
|
|
|
|
}],
|
|
|
|
"no-multiple-empty-lines": ["warn", {
|
|
|
|
"max": 2,
|
|
|
|
"maxEOF": 1,
|
|
|
|
"maxBOF": 0
|
|
|
|
}],
|
|
|
|
"no-whitespace-before-property": "error",
|
|
|
|
"operator-linebreak": ["error", "after"],
|
|
|
|
"space-in-parens": "error"
|
2016-12-14 17:39:17 +01:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
/* core/* */
|
|
|
|
"Chef": false,
|
|
|
|
"Dish": false,
|
|
|
|
"Recipe": false,
|
|
|
|
"Ingredient": false,
|
|
|
|
"Operation": false,
|
|
|
|
"Utils": false,
|
|
|
|
|
|
|
|
/* config/* */
|
|
|
|
"Categories": false,
|
|
|
|
"OperationConfig": false,
|
|
|
|
|
|
|
|
/* views/html/* */
|
|
|
|
"HTMLApp": false,
|
|
|
|
"HTMLCategory": false,
|
|
|
|
"HTMLOperation": false,
|
|
|
|
"HTMLIngredient": false,
|
|
|
|
"Manager": false,
|
|
|
|
"ControlsWaiter": false,
|
|
|
|
"HighlighterWaiter": false,
|
|
|
|
"InputWaiter": false,
|
|
|
|
"OperationsWaiter": false,
|
|
|
|
"OptionsWaiter": false,
|
|
|
|
"OutputWaiter": false,
|
|
|
|
"RecipeWaiter": false,
|
|
|
|
"SeasonalWaiter": false,
|
2017-02-23 19:59:58 +01:00
|
|
|
"WindowWaiter": false,
|
|
|
|
|
2017-02-25 00:50:17 +01:00
|
|
|
/* tests */
|
|
|
|
"TestRegister": false,
|
|
|
|
"TestRunner": false
|
2016-12-14 17:39:17 +01:00
|
|
|
}
|
2017-02-23 19:59:58 +01:00
|
|
|
}
|