mango-v4-ui/.eslintrc.json

24 lines
622 B
JSON
Raw Normal View History

2022-04-12 13:48:22 -07:00
{
2022-11-19 11:20:36 -08:00
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "react-hooks"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
2022-11-19 11:20:36 -08:00
"react/react-in-jsx-scope": 0,
"@next/next/no-img-element": 0,
2022-12-08 10:23:26 -08:00
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "warn", // Checks effect dependencies
"@typescript-eslint/no-explicit-any": "warn",
2022-11-19 11:20:36 -08:00
"@typescript-eslint/no-unused-vars": [
2,
{
"argsIgnorePattern": "^_"
}
]
}
2022-04-12 13:48:22 -07:00
}