File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ TS_NODE ?= ./node_modules/.bin/ts-node
9
9
# Paths
10
10
SRC_DIR = schemaregistry
11
11
SR_TEST_DIR = test/schemaregistry
12
- DEK_TEST_DIR = test/dekregistry
12
+ DEK_TEST_DIR = test/schemaregistry/ dekregistry
13
13
INTEG_DIR = e2e/schemaregistry
14
14
15
15
# Tasks
24
24
$(JEST) $(SR_TEST_DIR) $(DEK_TEST_DIR)
25
25
26
26
integtest:
27
- $(JEST) $(INTEG_DIR)
27
+ $(JEST) $(INTEG_DIR)
Original file line number Diff line number Diff line change @@ -55,5 +55,11 @@ module.exports = ts.config(
55
55
...ts . configs . recommended . map ( ( config ) => ( {
56
56
...config ,
57
57
ignores : [ "**/*.js" ] ,
58
+ rules : {
59
+ ...config . rules ,
60
+ "prefer-const" : 0 ,
61
+ "@typescript-eslint/no-explicit-any" : "warn" ,
62
+ "@typescript-eslint/no-unused-vars" : "warn" ,
63
+ }
58
64
} ) ) ,
59
65
) ;
You can’t perform that action at this time.
0 commit comments