1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 05:53:49 +01:00

Merge pull request #18945 from dylad/pr/vscode_import_riot_styles

.vscode: import initial RIOT-OS style
This commit is contained in:
Marian Buschsieweke 2022-11-22 07:02:33 +01:00 committed by GitHub
commit 54b0100c44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 1 deletions

3
.gitignore vendored
View File

@ -37,7 +37,8 @@ cachegrind.out*
# Codelite (among others) project files
*.project
# Visual Studio Code user settings
.vscode/
.vscode/*
!.vscode/settings.json
# ctags index files
tags
# GDB initialization scripts

20
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"editor.rulers": [
80,
120
],
"editor.detectIndentation": false,
"files.insertFinalNewline": true,
"files.associations": {
"Makefile.*": "makefile",
"*.mk": "makefile"
},
"[shellscript][c][cpp]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
},
"[makefile]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
},
}