Skip to content
Open
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
30 changes: 30 additions & 0 deletions knip.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
const config = {
/**
* As we currently only need unused dependency checks, we disable all checks except for that
*/
rules: {
files: "off",
duplicates: "off",
classMembers: "off",
unlisted: "off",
binaries: "off",
unresolved: "off",
catalog: "off",
exports: "off",
types: "off",
enumMembers: "off",
},

ignoreDependencies: [
"@ui5/*",
"docdash",
"@istanbuljs/esm-loader-hook",
"data-with-position",
"js-yaml",
"open",
"pretty-hrtime",
"jsdoc",
],
};

export default config;
Loading