11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
|
// 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/*'],
|
||
|
},
|
||
|
]);
|