* Adding action for linting * Configuring eslint * Update lint.yml * Update lint.yml * Update lint.yml * adds yarn jest to package.json * test report * debugging tests * trying force exit * force exit * test1 * forceexit * using another reporter * jest debugging * separated lints & tests * test * Cleanup * Add /src/third-party, /ios, and /android to ignore list
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: '@react-native-community',
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
ignorePatterns: ['**/__mocks__/*.ts', 'src/third-party', 'ios', 'android'],
|
|
overrides: [
|
|
{
|
|
files: ['*.js', '*.mjs', '*.ts', '*.tsx'],
|
|
rules: {
|
|
semi: [2, 'never'],
|
|
},
|
|
},
|
|
],
|
|
}
|