mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-17 01:55:10 +00:00
18 lines
394 B
Rust
18 lines
394 B
Rust
pub mod configuration;
|
|
pub mod options;
|
|
pub mod pyproject;
|
|
pub mod resolver;
|
|
|
|
pub mod options_base;
|
|
mod settings;
|
|
|
|
pub use settings::{FileResolverSettings, FormatterSettings, Settings};
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::path::Path;
|
|
|
|
pub(crate) fn test_resource_path(path: impl AsRef<Path>) -> std::path::PathBuf {
|
|
Path::new("../ruff_linter/resources/test/").join(path)
|
|
}
|
|
}
|