-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rev-dep.config.jsonc
More file actions
44 lines (44 loc) · 1.08 KB
/
.rev-dep.config.jsonc
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
34
35
36
37
38
39
40
41
42
43
44
{
"configVersion": "1.5",
"$schema": "https://github.com/jayu/rev-dep/blob/master/config-schema/1.5.schema.json?raw=true",
"ignoreFiles": ["**/node_modules/**"],
"rules": [
{
"path": ".",
"moduleBoundaries": [
{
"name": "src",
"pattern": "src/**/*",
"allow": ["src/**/*"],
},
],
"circularImportsDetection": {
"enabled": true,
"ignoreTypeImports": false,
},
"orphanFilesDetection": {
"enabled": false,
},
"unusedNodeModulesDetection": {
"enabled": true,
"excludeModules": [
"@tauri-apps/plugin-autostart",
"@tauri-apps/plugin-clipboard-manager",
"@tauri-apps/plugin-fs",
"@tauri-apps/plugin-global-shortcut",
"@tauri-apps/plugin-sql",
"tailwindcss",
],
},
"missingNodeModulesDetection": {
"enabled": false,
},
"unusedExportsDetection": {
"enabled": false,
},
"unresolvedImportsDetection": {
"enabled": true,
},
},
],
}