This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/.eslintrc

9 lines
253 B
Plaintext
Raw Normal View History

2016-02-27 21:53:11 +00:00
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"arrow-body-style":[0, "as-needed"], // fix `this` shortcut on ES6 classes
"react/jsx-no-bind": 0, // Makes difficult to pass args to prop functions
"no-else-return": 0,
}
}