linthis 0.22.0

A fast, cross-platform multi-language linter and formatter
Documentation
// Copyright 2024 zhlinh and linthis Project Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found at
//
// https://opensource.org/license/MIT
//
// The above copyright notice and this permission
// notice shall be included in all copies or
// substantial portions of the Software.

//! Language-specific formatter implementations.

pub mod cpp;
pub mod csharp;
pub mod dart;
pub mod go;
pub mod java;
pub mod kotlin;
pub mod lua;
pub mod php;
pub mod python;
pub mod ruby;
pub mod rust;
pub mod scala;
pub mod shell;
pub mod swift;
pub mod traits;
pub mod typescript;

pub use cpp::CppFormatter;
pub use csharp::CSharpFormatter;
pub use dart::DartFormatter;
pub use go::GoFormatter;
pub use java::JavaFormatter;
pub use kotlin::KotlinFormatter;
pub use lua::LuaFormatter;
pub use php::PhpFormatter;
pub use python::PythonFormatter;
pub use ruby::RubyFormatter;
pub use rust::RustFormatter;
pub use scala::ScalaFormatter;
pub use shell::ShellFormatter;
pub use swift::SwiftFormatter;
pub use traits::Formatter;
pub use typescript::TypeScriptFormatter;