Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
239 changes: 0 additions & 239 deletions .config/lingua.dic

This file was deleted.

13 changes: 0 additions & 13 deletions .config/spellcheck.toml

This file was deleted.

22 changes: 12 additions & 10 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
root = true

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

[*.{yml,md,yaml,sh}]
[*.py]
charset=utf-8
indent_size=4
indent_style=space

[*.{sh,yml,yaml}]
indent_size=2
indent_style=space
tab_width=8
end_of_line=lf

[*.md]
max_line_length=80
25 changes: 25 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checks

on:
push:
branches: [main, darwinia-v*, polkadot-v*]
pull_request:
branches: [main, darwinia-v*, polkadot-v*]

env:
RUST_TOOLCHAIN: nightly

jobs:
basic-checks:
name: Basic checks
runs-on: ubuntu-latest
steps:
- name: Install Rust ${{ env.RUST_TOOLCHAIN }} toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
default: true
- name: Fetch latest code
uses: actions/checkout@v3
- name: Cargo test
run: cargo test --all --locked
37 changes: 0 additions & 37 deletions .github/workflows/ci.yml

This file was deleted.

33 changes: 11 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,15 @@
**/target/
**/.env
**/.env2
**/rust-toolchain
hfuzz_target
hfuzz_workspace
**/Cargo.lock

**/*.rs.bk

*.o
*.so
*.rlib
*.dll
.gdb_history

*.exe

# System
.DS_Store

.cargo
# Integrated Development Environment
.idea
.vscode
*.iml
*.swp
*.swo

# Package Manager
## cargo
/target
## npm
node_modules

# Test data
test-data
Loading