We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 481f2ed commit 581ab53Copy full SHA for 581ab53
1 file changed
.agent/skills/coding-style/SKILL.md
@@ -1,9 +1,27 @@
1
---
2
name: coding-style
3
-description: Coding style for every case when coding. Use when coding.
+description: General coding style for this project
4
5
6
+# Overview
7
+
8
This project is deployed in static fashion.
9
Also this project is deliberately structured to support standalone html files representing pages.
10
11
So whatever you do always do style in it's own <style> tag in the same html file.
12
13
+# Error messages
14
15
+Preffer messages
16
17
+```ts
18
19
+throw new Error(`${this module name.ts} error: ${errorMessage}`);
20
21
+// instead of
22
23
+throw new Error(`${errorMessage}`);
24
25
+```
26
27
+... make sure each error clearly states it's origin
0 commit comments