-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdev.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathdev.json
File metadata and controls
42 lines (42 loc) · 1.09 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
[
{
"abbreviation": "shebang",
"title": "Bash shebang",
"body": "#!/usr/bin/env bash\nset -euo pipefail\n"
},
{
"abbreviation": "license",
"title": "MIT license header",
"body": "// SPDX-License-Identifier: MIT\n// Copyright (c) 2026 Martin Pfeffer\n"
},
{
"abbreviation": "todo",
"title": "TODO comment",
"body": "// TODO(martin): "
},
{
"abbreviation": "fixme",
"title": "FIXME comment with date",
"body": "// FIXME(2026-04): "
},
{
"abbreviation": "rsfn",
"title": "Rust pub fn skeleton",
"body": "pub fn name() -> Result<()> {\n Ok(())\n}\n"
},
{
"abbreviation": "tsfn",
"title": "TypeScript named export fn",
"body": "export function name(): void {\n \n}\n"
},
{
"abbreviation": "gitignore",
"title": "Common .gitignore lines",
"body": "node_modules/\ndist/\n.DS_Store\n.env\n.env.local\n*.log\n"
},
{
"abbreviation": "ccmsg",
"title": "Conventional Commits scaffold",
"body": "fix(scope): summary\n\nDetails of why this change is needed and what it does.\n\nRefs: #issue\n"
}
]