forked from Vagabonds-Labs/cofiblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cursorignore
33 lines (28 loc) · 809 Bytes
/
.cursorignore
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
# Complexity
no-useless-type-constraint
use-literal-keys
use-optional-chain
# Correctness
# (no-unused-variables and use-array-literals are off in the original config)
# Style
no-inferrable-types
no-namespace
use-as-const-assertion
# (use-consistent-array-type is off in the original config)
use-for-of
use-shorthand-function-type
# Suspicious
no-empty-block-statements
no-explicit-any
no-extra-non-null-assertion
no-misleading-instantiator
no-unsafe-declaration-merging
# (use-await is off in the original config)
use-namespace-keyword
# Additional rules from overrides
no-arguments
no-var
use-const
# Note: Many rules in the "correctness" and "suspicious" categories
# under the overrides section are set to "off". These are not included
# in the .cursorignore file as ignoring them would enable them.