Files
standardnotes-app-web/packages/mobile/.eslintrc
2022-06-22 07:15:37 -05:00

16 lines
388 B
Plaintext

{
"env": {
"node": true,
"commonjs": true
},
"extends": ["@react-native-community", "plugin:react-hooks/recommended", "../../.eslintrc.json"],
"rules": {
"no-console": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-var-requires": "off",
"eqeqeq": ["off"],
"no-void": ["off"]
},
"ignorePatterns": ["metro.config.js"]
}