fallow-core 2.40.3

Core analysis engine for the fallow TypeScript/JavaScript codebase analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! PM2 plugin.
//!
//! Detects PM2 projects and marks config files as always used.

use super::Plugin;

const ENABLERS: &[&str] = &["pm2"];

const ALWAYS_USED: &[&str] = &["ecosystem.config.{js,cjs}", "pm2.config.{js,cjs}"];

const TOOLING_DEPENDENCIES: &[&str] = &["pm2"];

define_plugin! {
    struct Pm2Plugin => "pm2",
    enablers: ENABLERS,
    always_used: ALWAYS_USED,
    tooling_dependencies: TOOLING_DEPENDENCIES,
}