Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Dec 27, 2020
0 parents commit 370f2fb
Show file tree
Hide file tree
Showing 28 changed files with 2,010 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
root = true

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

[*.py]
charset=utf-8
indent_size=4
indent_style=space

[*.{sh, yml, yaml}]
indent_size=2
indent_style=space
tab_width=8
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# IDE
.idea
.vscode
.ignore

# macOS
.DS_Store

# PM2
.pm2.json

# Release
release/

# Rust
**/*.rs.bk
**/target/
.cargo-ok
Cargo.toml.bak
expand.rs

# Added by cargo

/target
7 changes: 7 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
hard_tabs = true
max_width = 100
newline_style = "Unix"
reorder_imports = true
reorder_modules = true
tab_spaces = 4
use_field_init_shorthand = true
Loading

0 comments on commit 370f2fb

Please sign in to comment.