-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommand-ghostwriter.code-workspace
More file actions
152 lines (152 loc) · 4.29 KB
/
Copy pathcommand-ghostwriter.code-workspace
File metadata and controls
152 lines (152 loc) · 4.29 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"folders": [
{
"path": "."
}
],
"settings": {
"cSpell.ignorePaths": [
"uv.lock",
"bun.lock",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
"**/.cursor/extensions/ms-python.vscode-pylance-**"
],
"cSpell.words": [
"breakline",
"chardet",
"charliermarsh",
"choco",
"Codecov",
"commitlint",
"conventionalcommits",
"devcontainer",
"Dtype",
"EDITMSG",
"endfor",
"endswith",
"htmlcov",
"IHDR",
"isort",
"iterrows",
"itertuples",
"listdir",
"LOCALAPPDATA",
"maxfail",
"micropip",
"mypy",
"nohup",
"noreply",
"pprint",
"pycache",
"pydantic",
"pyodide",
"pytest",
"pyyaml",
"rcfile",
"remarkablemark",
"selectbox",
"USERPROFILE",
"venv"
],
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"editor.renderWhitespace": "boundary",
"explorer.excludeGitIgnore": false,
"files.autoSave": "afterDelay",
"files.exclude": {
"LICENSE": true,
".benchmarks": true,
".coverage**": true,
".devcontainer": false,
".gitignore": false,
".github": false,
".pyre": true,
".pyre_configuration": false,
".pre-commit-config.yaml": false,
".venv": true,
".watchmanconfig": true,
".yamllint.yml": true,
"build": true,
"commitlint.config.cjs": true,
"codecov.yaml": false,
"coverage.xml": true,
"htmlcov": false,
"htmlcov/z_**.html": true,
"htmlcov/**.js": true,
"node_modules": true,
"bun.lock": false,
"uv.lock": false,
"pytestdebug.log": true,
"requirements.txt": false,
"tests/**/.benchmarks": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.ruff_cache": true,
"**/__pycache__": true,
"**/tmp": true,
"__init__.py": true
},
"python.analysis.autoImportCompletions": true,
"python.analysis.autoSearchPaths": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.extraPaths": [
"${workspaceFolder}/.venv/*/site-packages",
"${workspaceFolder}/features",
"${workspaceFolder}/tests/e2e"
],
"python.analysis.ignore": ["/opt/homebrew/Cellar/python**"],
"python.analysis.include": [
"${workspaceFolder}/.venv/*/site-packages",
"${workspaceFolder}/features",
"${workspaceFolder}/tests/e2e"
],
"python.analysis.indexing": true,
"python.analysis.typeCheckingMode": "basic",
"python.autoComplete.extraPaths": [
"${workspaceFolder}/.venv/*/site-packages",
"${workspaceFolder}/features",
"${workspaceFolder}/tests/e2e"
],
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"ruff.format.preview": true,
"ruff.lineLength": 140,
"ruff.lint.preview": true,
"ruff.path": ["ruff"],
"terminal.integrated.env.windows": {
"PYTHONPATH": "${workspaceFolder}\\.venv\\Scripts\\python.exe"
},
"yaml.format.enable": true,
"yaml.keyOrdering": true,
"yaml.schemas": {
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-action.json": [
".github/*.yml",
".github/*.yaml"
],
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json": [
".github/*.yml",
".github/*.yaml"
],
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/codecov.json": [
"codecov.yml"
],
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/pre-commit-config.json": [
".pre-commit-config.yaml"
],
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/pyproject.json": [
"pyproject.toml"
]
},
"yaml.validate": false
}
}