Files
link-free/.eslintrc.json

31 lines
585 B
JSON
Raw Permalink Normal View History

2021-12-10 20:54:28 -03:00
{
2021-12-19 20:03:59 -03:00
"extends": [
"next",
"next/core-web-vitals",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"plugins": ["prettier", "import"],
2021-12-10 20:54:28 -03:00
"rules": {
"prettier/prettier": "error",
2021-12-19 20:03:59 -03:00
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"object",
"type"
],
"newlines-between": "always"
}
],
"@next/next/no-page-custom-font": "off"
2021-12-10 20:54:28 -03:00
}
}