UNPKG

478 BJavaScriptView Raw
1module.exports = {
2 "extends": "../.eslintrc.js",
3 /**
4 * ESLint rules
5 *
6 * All available rules: http://eslint.org/docs/rules/
7 *
8 * Rules take the following form:
9 * "rule-name", [severity, { opts }]
10 * Severity: 2 == error, 1 == warning, 0 == off.
11 */
12 "rules": {
13 "indent": [2, 2, { "SwitchCase": 1, "CallExpression": {"arguments": 2}, "MemberExpression": 2, "outerIIFEBody": 0 }],
14 "strict": [2, "global"],
15 }
16};