linthis 0.17.2

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.

//! SAST tool implementations.

pub mod bandit;
pub mod flawfinder;
pub mod gosec;
pub mod opengrep;
pub mod secrets;

pub use bandit::BanditScanner;
pub use flawfinder::FlawfinderScanner;
pub use gosec::GosecScanner;
pub use opengrep::OpenGrepScanner;
pub use secrets::SecretsScanner;