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