Correct ES Lint.

This commit is contained in:
Patrick Fic
2025-10-07 13:48:40 -07:00
parent 83fe7059e9
commit 809badc9e1
4 changed files with 3098 additions and 3342 deletions

10
eslint.config.js Normal file
View File

@@ -0,0 +1,10 @@
// 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/*"],
}
]);