mirror of
https://github.com/kremalicious/ipfs.git
synced 2024-11-22 09:47:13 +01:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"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"]
|
|
}
|
|
]
|
|
}
|