mirror of
https://github.com/j178/prek.git
synced 2026-04-09 01:52:24 +02:00
* Support `language: unsupported` and `language: unsupported_script` introduced in pre-commit v4.4 Honestly, I have no idea why `system` and `script` got deprecated or what we're supposed to use instead. I probably won't deprecate them in prek. * Fix lint
18 lines
301 B
Rust
18 lines
301 B
Rust
#[path = "../common/mod.rs"]
|
|
mod common;
|
|
|
|
#[cfg(all(feature = "docker", target_os = "linux"))]
|
|
mod docker;
|
|
#[cfg(all(feature = "docker", target_os = "linux"))]
|
|
mod docker_image;
|
|
mod fail;
|
|
mod golang;
|
|
mod lua;
|
|
mod node;
|
|
mod pygrep;
|
|
mod python;
|
|
mod ruby;
|
|
mod script;
|
|
mod unimplemented;
|
|
mod unsupported;
|