mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
31 lines
933 B
JSON
31 lines
933 B
JSON
{
|
|
"rules": {
|
|
"@next/next/no-img-element": "off",
|
|
"unused-imports/no-unused-imports": "error",
|
|
"prettier/prettier": "error",
|
|
"space-in-parens": "error",
|
|
"no-empty": "error",
|
|
"no-multiple-empty-lines": "error",
|
|
"no-irregular-whitespace": "error",
|
|
"strict": ["error", "never"],
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": ["error", "double", { "avoidEscape": true }],
|
|
"semi": ["error", "always"],
|
|
"padding-line-between-statements": [
|
|
"error",
|
|
{ "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
|
|
{ "blankLine": "any", "prev": ["const", "let", "var"], "next": ["const", "let", "var"] }
|
|
],
|
|
"space-before-function-paren": [
|
|
"error",
|
|
{
|
|
"anonymous": "always",
|
|
"named": "never",
|
|
"asyncArrow": "always"
|
|
}
|
|
]
|
|
},
|
|
"extends": ["next/core-web-vitals"],
|
|
"plugins": ["prettier", "unused-imports"]
|
|
}
|