-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathts.js
42 lines (40 loc) · 962 Bytes
/
ts.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
const mergeOptions = require('merge-options')
const config = require('.')
module.exports = mergeOptions({}, config, {
extends: [
'airbnb',
'xo',
'xo-react',
'prettier',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
plugins: ['prettier', '@typescript-eslint', 'prefer-arrow', 'unused-imports'],
rules: {
'no-useless-constructor': 'off',
'import/extensions': 'off',
'import/prefer-default-export': 'off',
'prettier/prettier': [
'error',
{
semi: false,
trailingComma: 'all',
singleQuote: true,
parser: 'typescript',
useTabs: true,
},
],
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-unused-vars': 'off',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
useJSXTextNode: true,
project: './tsconfig.json',
tsconfigRootDir: './',
},
})