Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile.schemaregistry
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TS_NODE ?= ./node_modules/.bin/ts-node
# Paths
SRC_DIR = schemaregistry
SR_TEST_DIR = test/schemaregistry
DEK_TEST_DIR = test/dekregistry
DEK_TEST_DIR = test/schemaregistry/dekregistry
INTEG_DIR = e2e/schemaregistry

# Tasks
Expand All @@ -24,4 +24,4 @@ test:
$(JEST) $(SR_TEST_DIR) $(DEK_TEST_DIR)

integtest:
$(JEST) $(INTEG_DIR)
$(JEST) $(INTEG_DIR)
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,11 @@ module.exports = ts.config(
...ts.configs.recommended.map((config) => ({
...config,
ignores: ["**/*.js"],
rules: {
...config.rules,
"prefer-const": 0,
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "warn",
}
})),
);