-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexample.linear.json
More file actions
73 lines (64 loc) · 1.81 KB
/
example.linear.json
File metadata and controls
73 lines (64 loc) · 1.81 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
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
{
"_comment": "This is an example .linear.json configuration file that can be placed in any folder to customize Linear integration behavior for notes in that folder and its subfolders.",
"workspace": "my-company",
"team": "engineering",
"project": "q4-roadmap",
"defaultAssignee": "john.doe@company.com",
"defaultPriority": 3,
"autoSync": true,
"labels": [
"frontend",
"backend",
"bug-fix"
],
"template": "# {{title}}\n\n**Status:** {{status}} | **Priority:** {{priority}}\n**Assignee:** {{assignee}} | **Team:** {{team}}\n\n## Context\n{{description}}\n\n## Acceptance Criteria\n- [ ] \n\n## Notes\n\n\n---\n*Linear: [{{identifier}}]({{url}}) | Last synced: {{lastSync}}*",
"syncRules": {
"bidirectional": true,
"conflictResolution": "manual",
"includeComments": true,
"mirrorHistory": false
},
"automation": {
"createOnSave": false,
"updateOnModify": true,
"syncInterval": 300,
"batchOperations": true
},
"display": {
"showTooltips": true,
"enableQuickEdit": true,
"inlineReferences": true,
"statusIcons": {
"Backlog": "📋",
"Todo": "📝",
"In Progress": "🔄",
"In Review": "👀",
"Done": "✅",
"Canceled": "❌"
}
},
"integrations": {
"kanbanGeneration": {
"enabled": true,
"groupBy": "status",
"showEstimates": true,
"includeDescription": false
},
"agendaGeneration": {
"enabled": true,
"daysAhead": 7,
"includeOverdue": true,
"groupByDate": true
}
},
"advanced": {
"customFields": {
"epic": "Epic",
"story_points": "Story Points",
"technical_debt": "Technical Debt"
},
"webhookUrl": "https://api.mycompany.com/linear-webhook",
"apiRateLimit": 100,
"retryAttempts": 3
}
}