managarten/apps-archived/reader/apps/mobile/eslint.config.js
Till JS 076e0c843d chore: restore archived apps (bauntown, news, reader, uload, wisekeep)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 01:08:51 +01:00

15 lines
304 B
JavaScript

/* eslint-env node */
const { defineConfig } = require('eslint/config');
const expoConfig = require('eslint-config-expo/flat');
module.exports = defineConfig([
expoConfig,
{
ignores: ['dist/*', 'supabase/functions/**/*', '.expo/**/*'],
},
{
rules: {
'react/display-name': 'off',
},
},
]);