Skip to content

Commit

Permalink
Merge pull request #23 from tvolk131/iced_overhaul
Browse files Browse the repository at this point in the history
Iced overhaul
  • Loading branch information
tvolk131 authored Sep 5, 2024
2 parents 5d1296b + 45abc64 commit 8540ed4
Show file tree
Hide file tree
Showing 117 changed files with 10,320 additions and 8,100 deletions.
39 changes: 0 additions & 39 deletions .eslintrc.cjs

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Dev CI

on:
push:
branches:
- "**" # Matches every branch.

jobs:
test-rust:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Rust Toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run `cargo check`
run: cargo check
- name: Run `cargo fmt`
run: cargo fmt -- --check
- name: Run `cargo clippy`
run: cargo clippy -- -D warnings
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
Expand All @@ -22,3 +17,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

/target/
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
"recommendations": ["rust-lang.rust-analyzer"]
}
Loading

0 comments on commit 8540ed4

Please sign in to comment.