@alaudoni/expo-firebase-extension-plugin
Version:
The Firebase Expo plugin allows you to use Firebase without leaving the managed workflow. Developed in collaboration with SweetGreen.
22 lines (21 loc) • 467 B
JavaScript
const tseslint = require('typescript-eslint');
module.exports = tseslint.config(
{
extends: [
'eslint:recommended',
],
ignores: [],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: "./tsconfig.json",
},
},
plugins: {
'@typescript-eslint': tseslint.plugin,
},
rules: {
"@typescript-eslint/no-floating-promises": "error",
"no-extra-boolean-cast": "off"
}
})