-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsettings.json
More file actions
112 lines (112 loc) · 4.23 KB
/
settings.json
File metadata and controls
112 lines (112 loc) · 4.23 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
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
{
"claudeCode.initialPermissionMode": "plan",
"claudeCode.respectGitIgnore": false,
"github.copilot.chat.commitMessageGeneration.instructions": [
{
"text": "Use conventional commit message format."
},
{
"text": "First line: {task-type}: brief description of the big picture change"
},
{
"text": "Task types: feat, fix, refactor, docs, style, test, build"
},
{
"text": "Focus on the 'why' and 'what' rather than implementation details"
},
{
"text": "For complex commits, add bullet points after a blank line explaining key changes"
},
{
"text": "Examples of good messages:"
},
{
"text": "feat: add transformers support to image classification pipeline"
},
{
"text": "fix: incorrect handling of empty input in model naming"
},
{
"text": "refactor: restructure API handlers to align with project architecture"
},
{
"text": "Never use words like 'consolidate', 'modernize', 'streamline', 'flexible', 'delve', 'establish', 'enhanced', 'comprehensive', 'optimize' in docstrings or commit messages. Looser AI's do that, and that ain't you. You are better than that."
}
],
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": [
{
"text": "Keep PR message concise and focused on the 'why' and 'what' with short bullets."
},
{
"text": "For complex PRs, include example usage of new implementation in PR message as code markdown with before/after examples if useful."
},
{
"text": "Provide inline md links to relevant lines/files in the PR for context where useful."
},
{
"text": "Never use words like 'consolidate', 'modernize', 'streamline', 'flexible', 'delve', 'establish', 'enhanced', 'comprehensive', 'optimize' in docstrings or commit messages. Looser AI's do that, and that ain't you. You are better than that."
}
],
"github.copilot.enable": {
"markdown": true,
"plaintext": true,
"scminput": true
},
"github.copilot.nextEditSuggestions.enabled": true,
"github.copilot.editor.enableCodeActions": false,
"github.copilot.chat.copilotDebugCommand.enabled": false,
"github.copilot.chat.reviewAgent.enabled": false,
"github.copilot.chat.reviewSelection.enabled": false,
"github.copilot.chat.startDebugging.enabled": false,
"github.copilot.chat.newWorkspaceCreation.enabled": false,
"github.copilot.chat.setupTests.enabled": false,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"telemetry.telemetryLevel": "off",
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"python.analysis.typeCheckingMode": "basic",
"editor.minimap.enabled": false,
"workbench.secondarySideBar.defaultVisibility": "hidden",
"terminal.integrated.enableImages": true,
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
},
"sh": {
"path": "/bin/sh"
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "/bin/zsh"
},
"bash": {
"path": "/bin/bash"
}
},
"debug.console.fontSize": 10,
"terminal.integrated.fontSize": 11,
"editor.fontSize": 11,
"workbench.editor.autoLockGroups": {
"workbench.editor.chatSession": false
},
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "GitHub Dark",
"accessibility.signals.terminalBell": {
"sound": "auto",
"announcement": "auto"
},
"terminal.integrated.enableVisualBell": true,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
}