2021-08-16 10:45:41 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
project: ['./tsconfig.json'],
|
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
|
|
|
ecmaVersion: 2018,
|
|
|
|
sourceType: 'module',
|
|
|
|
},
|
2021-10-05 12:22:14 +02:00
|
|
|
ignorePatterns: ['babel.config.js', 'metro.config.js', '.eslintrc.js'],
|
2021-08-16 10:45:41 +02:00
|
|
|
plugins: ['@typescript-eslint'],
|
2023-07-03 12:40:07 +02:00
|
|
|
extends: ['plugin:@typescript-eslint/recommended', '@react-native', '../.eslintrc.js'],
|
2021-08-16 10:45:41 +02:00
|
|
|
};
|