2016-05-26 16:37:24 +00:00
|
|
|
---
|
|
|
|
"extends":
|
2017-01-29 23:51:08 +00:00
|
|
|
- "eslint-config-airbnb-es5"
|
2016-05-26 16:37:24 +00:00
|
|
|
|
|
|
|
rules:
|
|
|
|
"no-undef": 0
|
2016-06-22 00:55:36 +00:00
|
|
|
"no-console": ["warn", { allow: ["warn", "error"] }]
|
2017-01-29 23:51:08 +00:00
|
|
|
"no-param-reassign": 0
|
|
|
|
"func-names": 0
|
|
|
|
"guard-for-in": 0
|
|
|
|
"no-undefined": 0
|
2018-10-21 16:30:48 +00:00
|
|
|
"consistent-return": 0
|
2017-01-29 23:51:08 +00:00
|
|
|
"no-nested-ternary": 0
|
2017-02-01 21:13:06 +00:00
|
|
|
"no-extend-native": ["error", { "exceptions": ["String"] }]
|