mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
04c3d81b1f
* shared * server * app * remove vestigial eslintrc files * update comment directives
29 lines
613 B
JSON
29 lines
613 B
JSON
{
|
|
"extends": ["../.oxlintrc.json"],
|
|
"plugins": ["oxc", "eslint", "typescript", "react"],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.{jsx,tsx}"],
|
|
"rules": {
|
|
"no-restricted-imports": [
|
|
"error",
|
|
{
|
|
"paths": [
|
|
{
|
|
"name": "reakit/Menu",
|
|
"importNames": ["useMenuState"],
|
|
"message": "Do not use useMenuState from reakit/Menu. Use useMenuState instead."
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"plugins": ["import"]
|
|
}
|
|
],
|
|
"env": {
|
|
"jest": true,
|
|
"browser": true
|
|
}
|
|
}
|