mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
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/*"],
|
|
},
|
|
]);
|