realm-flipper-plugin
Version:
A Flipper Plugin to debug Realm applications.
18 lines (17 loc) • 508 B
Plain Text
// From https://github.com/realm/realm-js/blob/master/packages/realm-react/.eslintrc.json
{
"plugins": [
"eslint-plugin-tsdoc"
],
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"tsdoc/syntax": "warn"
}
}