linthis 0.20.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 security scanners.

mod go;
mod java;
mod node;
mod python;
mod rust;

pub use go::GoSecurityScanner;
pub use java::JavaSecurityScanner;
pub use node::NodeSecurityScanner;
pub use python::PythonSecurityScanner;
pub use rust::RustSecurityScanner;