forked from lavina/lavina
Compare commits
4 Commits
84c93b7cf1
...
317d0d45b0
Author | SHA1 | Date |
---|---|---|
Mikhail | 317d0d45b0 | |
Mikhail | 0499a1b209 | |
Mikhail | bf5460f495 | |
Mikhail | 717855fa5d |
|
@ -0,0 +1,28 @@
|
|||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.5.0
|
||||
hooks:
|
||||
- id: check-toml
|
||||
- id: end-of-file-fixer
|
||||
- id: fix-byte-order-marker
|
||||
- id: mixed-line-ending
|
||||
- id: trailing-whitespace
|
||||
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: fmt
|
||||
name: fmt
|
||||
description: Format
|
||||
entry: cargo fmt
|
||||
language: system
|
||||
args:
|
||||
- --all
|
||||
types: [ rust ]
|
||||
pass_filenames: false
|
||||
- id: check
|
||||
name: check
|
||||
description: Check
|
||||
entry: cargo check
|
||||
language: system
|
||||
types: [ rust ]
|
||||
pass_filenames: false
|
|
@ -0,0 +1 @@
|
|||
alter table messages add column created_at text;
|
Loading…
Reference in New Issue