metro/.eslintrc

19 lines
287 B
Plaintext
Raw Normal View History

2017-01-26 12:56:40 +00:00
{
"extends": "eslint-config-fb-strict",
"plugins": [
"prettier"
],
2017-02-25 08:24:59 +00:00
"parser": "babel-eslint",
"rules": {
"prettier/prettier": [
"error",
"fb",
"@format"
],
2017-05-23 10:40:47 +00:00
"max-len": 0,
2017-02-25 08:24:59 +00:00
"no-var": 0,
"prefer-arrow-callback": 0,
"sort-keys": 0
}
2017-01-26 12:56:40 +00:00
}