-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy patheslint.config.mjs
64 lines (60 loc) · 1.89 KB
/
eslint.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import eslintPluginReact from 'eslint-plugin-react';
import eslintPluginReactNative from 'eslint-plugin-react-native';
import eslintPluginReactNativeOfficial from '@react-native/eslint-plugin';
import eslintPluginComments from 'eslint-plugin-eslint-comments';
import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
import eslintPluginJest from 'eslint-plugin-jest';
import eslintReactNativeConfig from '@react-native/eslint-config';
import tsEslint from 'typescript-eslint';
/**
* @react-native/eslint-config is for some reason still using the old notation
* for globals. We parse them manually here to make sure they're compatible with
* the new config. All globals which were previously set to true are now readonly.
*/
const globals = Object.keys(eslintReactNativeConfig.globals).reduce((acc, key) => {
if (eslintReactNativeConfig.globals[key]) {
acc[key] = 'readonly';
}
return acc;
}, {});
export default tsEslint.config(
tsEslint.configs.recommended,
{
ignores: ['node_modules/', 'dist/', '**/*.config.js'],
},
{
files: ['**/*.js', '**/*.cjs', '**/*.mjs', '**/*.jsx', '**/*.ts', '**/*.tsx'],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
parser: tsEslint.parser,
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals,
console: 'readonly',
},
},
settings: {
react: {
version: 'detect',
},
},
plugins: {
'@react-native': eslintPluginReactNativeOfficial,
react: eslintPluginReact,
'react-native': eslintPluginReactNative,
'eslint-comments': eslintPluginComments,
'react-hooks': eslintPluginReactHooks,
jest: eslintPluginJest,
},
rules: {
...eslintReactNativeConfig.rules,
'jsx-quotes': ['error', 'prefer-single'],
'react-native/no-inline-styles': 'off',
},
},
);