forked from wix/react-native-calendars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
36 lines (36 loc) · 976 Bytes
/
.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
module.exports = {
env: {
es6: true,
node: true,
'jest/globals': true
},
globals: {
expect: true,
it: true,
describe: true
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true,
jsx: true
},
sourceType: 'module'
},
plugins: ['react', 'react-native', 'jest', '@typescript-eslint'],
rules: {
semi: ['error', 'always'],
'linebreak-style': ['error', 'unix'],
'no-unused-vars': 1,
'object-curly-spacing': ['error', 'never'],
'react/jsx-uses-react': 2,
'react/jsx-uses-vars': 2,
'react-native/no-inline-styles': 1,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/ban-ts-comment': 1
}
};