-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.eslintrc.yml
More file actions
39 lines (39 loc) · 823 Bytes
/
.eslintrc.yml
File metadata and controls
39 lines (39 loc) · 823 Bytes
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
---
root: true
extends:
- plugin:@typescript-eslint/recommended
- prettier
- prettier/@typescript-eslint
- plugin:react/recommended
- '@react-native-community'
- plugin:react-native/all
- plugin:jest/recommended
parser: '@typescript-eslint/parser'
parserOptions:
project: ./tsconfig.json
ecmaVersion: 2018
sourceType: module
ecmaFeatures:
jsx: true
plugins:
- '@typescript-eslint'
- react
- react-native
- jest
settings:
react:
version: detect
rules:
no-console: warn
semi: off
yoda: off
'@typescript-eslint/camelcase':
- error
- allow:
- item_id
- item_name
- item_category
'@typescript-eslint/explicit-function-return-type': off
'@typescript-eslint/no-empty-function': off
react-native/no-raw-text: off
react-native/sort-styles: off