add lint rule to warn about missing deps in workspaces

This commit is contained in:
weboko 2022-12-23 00:17:46 +01:00
parent 2cd1ac2e0e
commit bef68ee081
No known key found for this signature in database

View File

@ -28,6 +28,10 @@
{ "newlines-between": "always", "alphabetize": { "order": "asc" } }
],
"no-constant-condition": ["error", { "checkLoops": false }],
"import/no-extraneous-dependencies": [
"error",
{ "devDependencies": false }
],
"sort-imports": [
"error",
{ "ignoreDeclarationSort": true, "ignoreCase": true }