pomodoro/client/.eslintrc
2016-09-15 11:33:57 +02:00

50 lines
1.0 KiB
Plaintext

{
"extends": "airbnb",
"rules": {
"semi": [ 2, "never" ],
"no-confusing-arrow": 0,
"react/prop-types": 0,
"guard-for-in": 0,
"global-require": 0,
"no-underscore-dangle": 0,
"object-shorthand": 0,
"default-case": 0,
"one-var": 0,
"prefer-rest-params": 0,
"no-unused-vars": [ 2, { "args": "none" } ],
"no-alert": 0,
"quote-props": 0,
"no-nested-ternary": 0,
"no-use-before-define": [2, { "functions": false, "classes": true }],
"consistent-return": 0,
"no-eval": 0,
"prefer-arrow-callback": 0,
"array-bracket-spacing": 0,
"no-console": 0,
"indent": [ 2, 2, { "SwitchCase": 1 }],
"max-len": 0,
"comma-dangle": 0,
"no-param-reassign": 0,
"prefer-template": 0,
"curly": 0,
"func-names": 0,
"no-shadow": 0,
"spaced-comment": 0,
"strict": [ 2, "global" ]
},
"env": {
"browser": true
},
"globals": {
"ENV": true,
"google": true,
"INITIAL_STATE": true,
"INITIAL_CONTEXT": true,
"PWD": true,
"$": true
}
}