mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
31 lines
567 B
JSON
31 lines
567 B
JSON
{
|
|
"plugins": ["react-intl-format"],
|
|
"extends": ["plugin:react/recommended", "plugin:jest/recommended"],
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"react-intl-format/missing-formatted-message": [
|
|
"error",
|
|
{
|
|
"noTrailingWhitespace": false,
|
|
"ignoreLinks": false
|
|
}
|
|
],
|
|
"react-intl-format/missing-attribute": [
|
|
"error",
|
|
{
|
|
"noTrailingWhitespace": false,
|
|
"noSpreadOperator": true
|
|
}
|
|
],
|
|
"react-intl-format/missing-values": [
|
|
"error"
|
|
],
|
|
"react/display-name": "off"
|
|
}
|
|
}
|