ipfs/.eslintrc.json

19 lines
395 B
JSON
Raw Permalink Normal View History

2021-09-13 22:29:05 +02:00
{
2021-09-13 23:55:29 +02:00
"extends": [
"prettier",
"plugin:prettier/recommended",
"next/core-web-vitals"
],
"plugins": ["prettier", "testing-library"],
"overrides": [
// Only uses Testing Library lint rules in test files
{
"files": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"extends": ["plugin:testing-library/react"]
}
]
2021-09-13 22:29:05 +02:00
}