-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.cursorrules
136 lines (121 loc) · 4.49 KB
/
.cursorrules
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Security-related rules
rule "no-secrets-in-source" {
# Prevent accidental commit of secrets/credentials
matches = ["**/*.{ts,js,json}"]
pattern = "(?i)(password|secret|token|key).*=.*['\"][^\s]{8,}['\"]"
message = "Potential secret detected in source code. Use environment variables instead."
}
# CLI Architecture patterns
rule "command-structure" {
# Enforce consistent command structure
matches = ["src/commands/**/*.ts"]
contains = ["export default class", "static description", "async run()"]
message = "Commands must export a default class with static description and async run() method"
}
rule "error-handling" {
# Ensure proper error handling in commands
matches = ["src/commands/**/*.ts"]
not_contains = ["console.error", "process.exit"]
message = "Use oclif's error handling utilities instead of console.error or process.exit"
}
# Testing requirements
rule "service-tests" {
# Ensure each service has corresponding unit tests
matches = ["src/service/**/*.svc.ts"]
requires_files = ["test/service/{name}.test.ts"]
message = "Each service must have a corresponding unit test file"
}
rule "test-naming" {
# Enforce consistent test file naming
matches = ["test/**/*.test.ts"]
not_contains = [".test.svc.ts"]
message = "Test files should be named {name}.test.ts, not {name}.test.svc.ts"
}
# Documentation
rule "command-docs" {
# Enforce documentation for commands
matches = ["src/commands/**/*.ts"]
pattern = "static description = '[^']{10,}'"
message = "Commands must have meaningful descriptions (at least 10 characters)"
}
# Dependencies
rule "native-node" {
# Prefer native Node.js modules
matches = ["package.json"]
not_contains = [
"lodash",
"moment",
"axios",
"request",
"got",
"superagent",
"node-fetch",
"underscore",
"ramda",
"date-fns",
"dayjs",
"luxon",
"bluebird",
"uuid"
]
message = "Prefer native Node.js modules over heavy dependencies. Use native alternatives:\n- Lodash/Underscore/Ramda -> Array methods, Object methods\n- Moment/date-fns/dayjs/luxon -> Temporal API or Date\n- axios/got/request/superagent/node-fetch -> fetch\n- bluebird -> native Promises\n- uuid -> crypto.randomUUID()"
}
# Architecture patterns
rule "layer-separation" {
# Keep API calls separate from command logic
matches = ["src/commands/**/*.ts"]
not_contains = ["fetch(", "axios.", "http.request"]
message = "API calls should be in separate service files, not in commands"
}
# Service Layer Rules
# These rules enforce proper separation of concerns in the service layer
rule "service-layer" {
# Enforce service layer structure
matches = ["src/service/**/*.svc.ts"]
contains = ["export"]
pattern = "export (function|const|interface|type)"
message = "Services should export pure functions, interfaces, or types"
}
rule "service-naming" {
# Enforce .svc.ts extension for service files
matches = ["src/service/**/*.ts"]
not_contains = [".svc.ts"]
message = "Service files must end with .svc.ts"
}
rule "service-no-fs" {
# Prevent file system operations in service layer
matches = ["src/service/**/*.svc.ts"]
not_contains = ["import.*fs", "node:fs"]
message = "File system operations should be handled in commands, not services"
}
rule "service-no-oclif" {
# Prevent oclif usage in service layer
matches = ["src/service/**/*.svc.ts"]
not_contains = ["@oclif"]
message = "Oclif dependencies should only be used in commands, not services"
}
rule "service-no-inquirer" {
# Prevent inquirer usage in service layer
matches = ["src/service/**/*.svc.ts"]
not_contains = ["inquirer"]
message = "UI interactions should be handled in the UI layer, not services"
}
rule "service-no-cli-table" {
# Prevent cli-table3 usage in service layer
matches = ["src/service/**/*.svc.ts"]
not_contains = ["cli-table3"]
message = "Table formatting should be handled in the UI layer, not services"
}
rule "service-no-apollo" {
# Prevent Apollo Client usage in service layer
matches = ["src/service/**/*.svc.ts"]
not_contains = ["@apollo/client", "gql`", "useQuery", "useMutation"]
message = "GraphQL/Apollo logic should be handled in the API layer, not services"
}
# Architecture Organization Rules
rule "no-utils" {
# Prevent use of utils directory
matches = ["src/**/*.ts"]
not_contains = ["from ['\"].*utils"]
message = "Avoid using utils directory. Move functionality to appropriate service or UI layer:\n- Business logic -> services\n- UI/CLI interactions -> ui\n- Shared types/interfaces -> types\n- Constants -> config"
}