41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import { fixupConfigRules } from '@eslint/compat';
|
|
import { FlatCompat } from '@eslint/eslintrc';
|
|
import js from '@eslint/js';
|
|
import prettier from 'eslint-plugin-prettier';
|
|
import { defineConfig } from 'eslint/config';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all,
|
|
});
|
|
|
|
export default defineConfig([
|
|
{
|
|
extends: fixupConfigRules(compat.extends('@react-native', 'prettier')),
|
|
plugins: { prettier },
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'react-hooks/exhaustive-deps': 'off',
|
|
'prettier/prettier': [
|
|
'warn',
|
|
{
|
|
quoteProps: 'consistent',
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
useTabs: false,
|
|
printWidth: 100,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{
|
|
ignores: ['node_modules/', 'lib/', 'docs/', 'jest.setup.js', 'example/**/.expo/'],
|
|
},
|
|
]);
|