forked from jdalrymple/gitbeaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
60 lines (52 loc) · 1013 Bytes
/
.eslintrc.yml
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
env:
node: true
browser: true
jest/globals: true
globals:
page: true
browser: true
context: true
extends:
- airbnb-base
- plugin:@typescript-eslint/recommended
- plugin:prettier/recommended
- prettier/@typescript-eslint
- plugin:jest/recommended
parser: '@typescript-eslint/parser'
ignorePatterns:
- node_modules/
- dist/
- '**/rollup.config.js'
- '**/jest.config*.js'
- '**/scripts/*.ts'
- '*d.ts'
plugins:
- '@typescript-eslint'
- import
rules:
import/no-default-export: error
import/prefer-default-export: off
'@typescript-eslint/explicit-function-return-type': off
import/no-extraneous-dependencies:
- error
- devDependencies:
- 'scripts/*.js'
- '**/test/**/*.ts'
import/extensions:
- error
- never
- json: always
camelcase:
- error
overrides:
- files:
- '**/*.ts'
- '**/*.tsx'
rules:
camelcase: 'off'
settings:
import/resolver:
node:
extensions:
- .js
- .ts