forked from Ivasoft/mattermost-mobile
34 lines
550 B
JSON
34 lines
550 B
JSON
{
|
|
"extends": [
|
|
"plugin:mattermost/react"
|
|
],
|
|
"plugins": [
|
|
"mattermost"
|
|
],
|
|
"settings": {
|
|
"react": {
|
|
"pragma": "React",
|
|
"version": "16.5"
|
|
}
|
|
},
|
|
"env": {
|
|
"jest": true
|
|
},
|
|
"globals": {
|
|
"__DEV__": true
|
|
},
|
|
"rules": {
|
|
"global-require": 0,
|
|
"react/display-name": [2, { "ignoreTranspilerName": false }],
|
|
"react/jsx-filename-extension": [2, {"extensions": [".js"]}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.test.js", "*.test.jsx"],
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|
|
]
|
|
}
|