2025-07-24 13:04:06 -05:00
|
|
|
// https://docs.expo.dev/guides/using-eslint/
|
2025-08-06 23:29:48 -05:00
|
|
|
const { defineConfig } = require('eslint/config')
|
|
|
|
|
const expoConfig = require('eslint-config-expo/flat')
|
2025-07-24 13:04:06 -05:00
|
|
|
|
|
|
|
|
module.exports = defineConfig([
|
2025-08-06 23:29:48 -05:00
|
|
|
expoConfig,
|
|
|
|
|
{
|
|
|
|
|
ignores: ['dist/*']
|
|
|
|
|
}
|
|
|
|
|
])
|