mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-14 16:30:43 -05:00
20 lines
627 B
JavaScript
20 lines
627 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
"extends": "./config-base.js",
|
|
"rules": {
|
|
"comma-dangle": [2, "never"],
|
|
"comma-spacing": [2, {"before": false, "after": false}],
|
|
"no-restricted-syntax": [2,
|
|
"ReturnStatement", "LabeledStatement", "BreakStatement", "ContinueStatement",
|
|
"IfStatement", "SwitchStatement",
|
|
"WhileStatement", "DoWhileStatement", "ForStatement", "ForInStatement",
|
|
"FunctionDeclaration", "VariableDeclaration",
|
|
"FunctionExpression",
|
|
"UpdateExpression",
|
|
"BinaryExpression", "LogicalExpression",
|
|
"ConditionalExpression", "CallExpression", "NewExpression", "SequenceExpression"
|
|
]
|
|
}
|
|
};
|