blob: 5025da683d6b6ecdced898af11f2e5dc5a73a4c1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// https://docs.expo.dev/guides/using-eslint/
const { defineConfig } = require('eslint/config');
const expoConfig = require('eslint-config-expo/flat');
module.exports = defineConfig([
expoConfig,
{
ignores: ['dist/*'],
},
]);
|