debian-image-builder-frontend/src/test/.eslintrc
Xiaofeng Wang d4cb1c4d6b test: Add two more eslint plugin to follow best practices and
anticipate common mistakes

eslint-plugin-testing-library: for writing tests with Testing Library
eslint-plugin-jest-dom: for writing tests with jest-dom
2020-11-06 10:03:26 +01:00

18 lines
282 B
Text

{
"env": {
"jest": true,
"es6": true
},
"plugins": [
"testing-library",
"jest-dom"
],
"rules": {
"react/display-name": "off",
"react/prop-types": "off"
},
"extends": [
"plugin:testing-library/react",
"plugin:jest-dom/recommended"
]
}