1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-07-04 16:30:13 +02:00
pingvin-share/frontend/.eslintrc.json

18 lines
425 B
JSON
Raw Normal View History

2022-04-25 15:15:17 +02:00
{
"extends": [
2023-07-30 22:34:10 +02:00
"next",
"eslint-config-next",
"eslint:recommended",
"prettier"
],
2022-04-25 15:15:17 +02:00
"plugins": ["react"],
"rules": {
"quotes": ["warn", "double", { "allowTemplateLiterals": true }],
"react-hooks/exhaustive-deps": ["off"],
"import/no-anonymous-default-export": ["off"],
"no-unused-vars": ["warn"],
"react/no-unescaped-entities": ["off"],
"@next/next/no-img-element": ["off"]
2022-04-25 15:15:17 +02:00
}
}