Add basic workspace configuration for vscode
This commit is contained in:
parent
6cd04aa858
commit
ca8e21583c
|
@ -97,3 +97,10 @@ objs
|
||||||
# Generated docs
|
# Generated docs
|
||||||
/doc/api
|
/doc/api
|
||||||
*.orig
|
*.orig
|
||||||
|
|
||||||
|
# VSCode workspace files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
|
||||||
|
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
|
||||||
|
|
||||||
|
// List of extensions which should be recommended for users of this workspace.
|
||||||
|
"recommendations": [
|
||||||
|
// Syntax
|
||||||
|
"ms-vscode.cpptools",
|
||||||
|
"ms-vscode.cmake-tools",
|
||||||
|
"ms-python.python",
|
||||||
|
"twxs.cmake"
|
||||||
|
],
|
||||||
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
||||||
|
"unwantedRecommendations": [
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"editor.rulers": [
|
||||||
|
{"column": 95 },
|
||||||
|
{"column": 120 }
|
||||||
|
],
|
||||||
|
"files.trimTrailingWhitespace": true
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
FROM gcc:10
|
||||||
|
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
|
||||||
|
RUN apt-get update -qq
|
||||||
|
RUN apt-get -t buster-backports install -y cmake
|
||||||
|
|
Loading…
Reference in New Issue