Updating lint settings for 'jsx' and 'global' property lint issue.

pull/668/head
Kellan Wampler 2022-09-13 11:09:00 -04:00
rodzic fd76439685
commit 2b60c466d2
1 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -91,7 +91,16 @@
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"prettier/prettier": "warn"
"prettier/prettier": "warn",
"react/no-unknown-property": [
2,
{
"ignore": [
"jsx",
"global"
]
}
]
}
}