Initial commit

Add config files, setup project.
pull/8/head
Subhomoy Haldar 2023-01-01 15:21:35 +00:00
commit 0986a0c8d7
4 changed files with 39 additions and 0 deletions

9
.editorconfig Normal file
View File

@ -0,0 +1,9 @@
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.v]
indent_style = tab
indent_size = 4

7
.gitattributes vendored Normal file
View File

@ -0,0 +1,7 @@
* text=auto eol=lf
*.bat eol=crlf
**/*.v linguist-language=V
**/*.vv linguist-language=V
**/*.vsh linguist-language=V
**/v.mod linguist-language=V

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
# Binaries for programs and plugins
main
*.exe
*.exe~
*.so
*.dylib
*.dll
# Ignore binary output folders
bin/
# Ignore common editor/system specific metadata
.DS_Store
.idea/
.vscode/
*.iml

7
v.mod Normal file
View File

@ -0,0 +1,7 @@
Module {
name: 'whisker'
description: 'V library for supporting whisker, a descendant of the Mustache templating language.'
version: '0.0.1'
license: 'MIT'
dependencies: []
}