bsky-app/.eslintrc.js

17 lines
342 B
JavaScript
Raw Normal View History

2022-06-08 00:50:05 +02:00
module.exports = {
root: true,
extends: '@react-native-community',
parser: '@typescript-eslint/parser',
2022-06-08 22:52:12 +02:00
// plugins: ['@typescript-eslint'],
2022-06-08 00:50:05 +02:00
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
2022-06-08 22:52:12 +02:00
'@typescript-eslint/no-shadow': 'off',
2022-06-08 00:50:05 +02:00
'no-shadow': 'off',
'no-undef': 'off',
},
},
],
};