mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00:00
11 lines
229 B
JavaScript
11 lines
229 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/*"],
|
||
|
|
},
|
||
|
|
])
|