-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
60 lines (58 loc) · 1.34 KB
/
.eslintrc.js
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
const fs = require('fs')
const path = require('path')
const pathToTsConfig = path.join(process.cwd(), 'tsconfig.json')
const doesTsConfigExist = fs.existsSync(pathToTsConfig)
module.exports = {
root: true,
extends: [
'@react-native-community/eslint-config',
'plugin:react/jsx-runtime',
'plugin:import/recommended',
'plugin:import/typescript',
'eslint-config-prettier',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'react', 'react-native', 'import'],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
project: doesTsConfigExist ? pathToTsConfig : undefined,
},
env: {
'react-native/react-native': true,
'jest/globals': true,
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
rules: {
'import/order': [
'error',
{
pathGroups: [
{
pattern: '~/**',
group: 'external',
},
],
},
],
'no-restricted-properties': [
'error',
{
object: 'StyleSheet',
property: 'create',
message: 'Use makeStyles from @roll-network/design-system instead.',
},
],
},
ignorePatterns: ['**/dist/**/*.js', '**/dist/**/*.ts'],
}