2021-08-16 02:45:41 -06: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 04:22:14 -06:00
|
|
|
ignorePatterns: ['babel.config.js', 'metro.config.js', '.eslintrc.js'],
|
2021-08-16 02:45:41 -06:00
|
|
|
plugins: ['@typescript-eslint'],
|
2023-07-03 04:40:07 -06:00
|
|
|
extends: ['plugin:@typescript-eslint/recommended', '@react-native', '../.eslintrc.js'],
|
2021-08-16 02:45:41 -06:00
|
|
|
};
|