Massive/.eslintrc.js

17 lines
342 B
JavaScript
Raw Normal View History

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