Meta: Add project files

This commit is contained in:
Alec Murphy 2025-02-16 15:20:03 -05:00
parent 55b5b7df1e
commit 6d27d43268
4 changed files with 18 additions and 0 deletions

14
.clang-format Normal file
View file

@ -0,0 +1,14 @@
---
Language: Cpp
BasedOnStyle: WebKit
SpaceAfterTemplateKeyword: false
AlignEscapedNewlines: Left
AlignTrailingComments: true
BreakBeforeInheritanceComma: true
BreakConstructorInitializers: BeforeComma
IndentPPDirectives: AfterHash
BreakBeforeBraces: Custom
BraceWrapping:
AfterFunction: true
NamespaceIndentation: None
QualifierAlignment: Right

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
build/
src/net/exports/

1
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1 @@
{"jaktLanguageServer.compiler.executablePath":"jakt","git.ignoreLimitWarning":true}

1
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1 @@
{"version":"2.0.0","tasks":[{"label":"Build All","type":"shell","command":"${workspaceFolder}/scripts/build-all ${workspaceFolder}","group":{"kind":"build","isDefault":true},"problemMatcher":[]}]}