mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
13 lines
320 B
JavaScript
13 lines
320 B
JavaScript
// https://docs.expo.dev/guides/using-eslint/
|
|
const { defineConfig } = require('eslint/config');
|
|
const expoConfig = require('eslint-config-expo/flat');
|
|
// const { config: epicConfig } = require('@epic-web/config/eslint')
|
|
|
|
module.exports = defineConfig([
|
|
expoConfig,
|
|
// ...epicConfig,
|
|
{
|
|
ignores: ['dist/*'],
|
|
},
|
|
]);
|