20 lines
341 B
JSON
20 lines
341 B
JSON
{
|
|
"extends": ["plugin:prettier/recommended"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"arrow-body-style": "off",
|
|
"prefer-arrow-callback": "off"
|
|
},
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"singleQuote": true,
|
|
"parser": "flow"
|
|
},
|
|
{
|
|
"usePrettierrc": false
|
|
}
|
|
]
|
|
}
|