Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetsait committed Aug 8, 2022
0 parents commit 8f67455
Show file tree
Hide file tree
Showing 43 changed files with 301,076 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
insert_final_newline = true
indent_style = tab
indent_size = 4
trim_trailing_whitespace = false
end_of_line = lf
charset = utf-8

[*.json]
insert_final_newline = false
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
149 changes: 149 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
# Test SQLite Files
*.sqlite
*.sqlite-shm
*.sqlite-wal

# Build Directories
[Bb]in

# Dependency Folders
[Ll]ib

# Compiled Object Files
*.o
*.obj

# Compiled Dynamic Libraries
*.so
*.dylib
*.dll

# Compiled Static Libraries
*.a
*.lib

# Executables
*.exe

# DUB
# =========================
.dub
docs.json
__dummy.html
docs/
build/

# Code coverage
*.lst

# =========================
# Editors
# =========================

# Visual Studio Code
# =========================
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

# MonoDevelop
# =========================
*.userprefs
*.usertasks

# Kate
# =========================
.*.kate-swp
.swp.*

# Notepad++
# =========================
*.bak

# =========================
# Operating Systems
# =========================

# Linux
# =========================
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# macOS
# =========================

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows
# =========================

# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "gdb",
"request": "launch",
"target": "bin/debug-linux-x86_64/firemark",
"windows": {
"target": "bin\\debug-windows-x86_64\\firemark.exe"
},
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText",
"arguments": "-v -j 1"
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"dscanner.ignoredKeys": [
"dscanner.style.long_line",
"dscanner.suspicious.label_var_same_name"
]
}
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "./build.sh",
"windows": {
"command": ".\\build.ps1"
},
"type": "shell",
"args": [],
"group": "build",
"presentation": {
"reveal": "never"
},
"problemMatcher": "$dmd"
}
]
}
Loading

0 comments on commit 8f67455

Please sign in to comment.