jsoncrack.com/.eslintrc.json

14 lines
364 B
JSON
Raw Normal View History

2022-01-30 13:09:56 +03:00
{
2022-02-03 18:10:53 +03:00
"rules": {
2022-09-12 22:28:33 +03:00
"@next/next/no-img-element": "off",
2023-05-14 13:35:14 +03:00
"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"
2022-02-03 22:06:58 +03:00
},
"extends": ["next/core-web-vitals"],
2023-05-14 13:35:14 +03:00
"plugins": ["prettier", "unused-imports"]
2022-02-03 22:06:58 +03:00
}