Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Oct 29, 2019
0 parents commit 57c75af
Show file tree
Hide file tree
Showing 22 changed files with 7,108 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true
[*]
indent_style=tab
indent_size=tab
tab_width=4
end_of_line=lf
charset=utf-8
trim_trailing_whitespace=true
max_line_length=120
insert_final_newline=true

[*.{yml,yaml}]
indent_style=space
indent_size=2
tab_width=8
end_of_line=lf
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Generated by Cargo
# will have compiled files and executables
**/target/

# These are backup files generated by rustfmt
**/*.rs.bk
3 changes: 3 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
reorder_imports = true
hard_tabs = true
max_width = 120
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: rust
rust: nightly-2019-08-15
cache: cargo
before_script:
- rustup target add wasm32-unknown-unknown
- command -v wasm-gc || cargo install --git https://github.com/alexcrichton/wasm-gc --force
- rustup component add rustfmt
script:
- cargo fmt --all -- --check
- cargo build
- cargo test --all
Loading

0 comments on commit 57c75af

Please sign in to comment.