mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-17 06:56:04 +01:00
31 lines
585 B
JSON
31 lines
585 B
JSON
{
|
|
"extends": [
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"plugin:prettier/recommended",
|
|
"plugin:import/recommended",
|
|
"plugin:import/typescript"
|
|
],
|
|
"plugins": ["prettier", "import"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": [
|
|
"builtin",
|
|
"external",
|
|
"internal",
|
|
"parent",
|
|
"sibling",
|
|
"index",
|
|
"object",
|
|
"type"
|
|
],
|
|
"newlines-between": "always"
|
|
}
|
|
],
|
|
"@next/next/no-page-custom-font": "off"
|
|
}
|
|
}
|