bsky-app/.eslintrc.js

18 lines
369 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',
2022-06-09 20:03:25 +02:00
semi: [2, 'never'],
2022-06-08 00:50:05 +02:00
},
},
],
2022-06-09 20:03:25 +02:00
}