forked from camptocamp/ngeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yaml
50 lines (50 loc) · 1.36 KB
/
.eslintrc.yaml
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
extends:
- openlayers
- plugin:@typescript-eslint/recommended
env:
jquery: true
parserOptions:
ecmaVersion: 2017
project: ./tsconfig-eslint.json
plugins:
- copyright
rules:
no-console: 0
comma-dangle: 0
import/no-unresolved: 0
valid-jsdoc: 0
no-unused-vars: error
prettier/prettier:
- error
- singleQuote: true
bracketSpacing: false
quoteProps: preserve
printWidth: 110
sort-imports-es6-autofix/sort-imports-es6: 0
copyright/copyright: error
'@typescript-eslint/indent': 0
'@typescript-eslint/no-unused-vars': 0
'@typescript-eslint/no-use-before-define': 0
'@typescript-eslint/camelcase': 0
'@typescript-eslint/no-unnecessary-type-assertion':
- error
'@typescript-eslint/no-for-in-array':
- error
'@typescript-eslint/no-this-alias':
- error
'@typescript-eslint/no-useless-constructor':
- error
'@typescript-eslint/prefer-for-of':
- error
'@typescript-eslint/prefer-includes':
- error
'@typescript-eslint/prefer-string-starts-ends-with':
- error
'@typescript-eslint/restrict-plus-operands':
- error
'@typescript-eslint/ban-ts-ignore': 0
'@typescript-eslint/explicit-function-return-type': 0
'@typescript-eslint/no-var-requires': 0
'@typescript-eslint/no-empty-function': 0
'@typescript-eslint/ban-ts-comment': 0
'@typescript-eslint/explicit-module-boundary-types': 0