pomodoro/.eslintrc
Linus Miller 47ce0a2a33 Huge commit
- Update all deps
 - Apply midwest changes
 - Convert all templates to JSX
 - Preact instead of Marko
 - Babel & Eslint
2016-11-10 14:34:44 +01:00

15 lines
389 B
Plaintext

{
"rules": {
"arrow-parens": [2, "always"],
"class-methods-use-this": 0,
"func-names": 0,
"import/no-unresolved": [2, { "ignore": ["^[^./]"] }],
"no-console": [1, { "allow": ["warn", "error", "info"] }],
"no-empty": [2, { "allowEmptyCatch": true }],
"no-mixed-operators": 0,
"no-param-reassign": 0,
"no-shadow": 0,
"no-underscore-dangle": 0
}
}