forked from xdy/twodsix-foundryvtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
old.eslintrc.yml
62 lines (62 loc) · 1.21 KB
/
old.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
61
62
---
env:
browser: true
es6: true
extends:
- eslint:recommended
- plugin:@typescript-eslint/recommended
- eslint-config-prettier
globals:
Atomics: readonly
SharedArrayBuffer: readonly
ItemSheet: readonly
game: readonly
mergeObject: readonly
CONFIG: writable
duplicate: readonly
"$": readonly
Tabs: readonly
Hooks: readonly
Items: readonly
loadTemplates: readonly
Combat: writable
canvas: readonly
ActorSheet: readonly
Actor: readonly
Actors: readonly
fetchSpell: readonly
parserOptions:
ecmaVersion: 2020
sourceType: module
rules:
prettier/prettier: error
"@typescript-eslint/explicit-module-boundary-types":
- error
- allowDirectConstAssertionInArrowFunctions: true
allowHigherOrderFunctions: true
allowTypedFunctionExpressions: true
curly: warn
brace-style: 1
no-mixed-spaces-and-tabs: warn
indent: [2, 2]
settings:
import/resolver:
node:
paths:
- src
- ''
- dist
extensions:
- ".js"
- ".jsx"
- ".ts"
- ".tsx"
- ".json"
plugins:
- prettier
- "@typescript-eslint"
overrides:
- files: tests/**/*
rules:
global-require: 'off'
parser: "@typescript-eslint/parser"