Skip to content

Commit

Permalink
Mouving iced_aw::widgets to iced_aw::widget to mimic iced
Browse files Browse the repository at this point in the history
Updating `.vscode/lauch.json` to handle the new position of the examples
Adding a pre-commit config
  • Loading branch information
Ultraxime committed Aug 27, 2024
1 parent b704bcf commit 1c9196c
Show file tree
Hide file tree
Showing 68 changed files with 913 additions and 971 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ pkg/
.idea
.DS_Store
.vscode/settings.json

49 changes: 49 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: "(.*).pem"
- id: mixed-line-ending
exclude: "(.*).pem"
args: ['--fix=lf']
description: Forces to replace line ending by the UNIX 'lf' character.
- id: check-case-conflict
- id: check-merge-conflict
- id: detect-private-key
- id: requirements-txt-fixer
- id: check-added-large-files
- id: check-symlinks
- id: check-toml

- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: markdownlint
args: ['-r ~MD013']

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: remove-crlf
- id: remove-tabs

- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: cargo-check
- id: clippy

- repo: https://github.com/DevinR528/cargo-sort
rev: v1.0.9
hooks:
- id: cargo-sort
- repo: local
hooks:
- id: rustfmt
name: rustfmt
description: Check if all files follow the rustfmt style
entry: cargo fmt --all -- --color always
language: system
pass_filenames: false
Loading

0 comments on commit 1c9196c

Please sign in to comment.