mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 07:04:53 +00:00
15 lines
301 B
Rust
15 lines
301 B
Rust
pub mod configuration;
|
|
pub mod options;
|
|
pub mod pyproject;
|
|
pub mod resolver;
|
|
|
|
pub mod options_base;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::path::Path;
|
|
|
|
pub(crate) fn test_resource_path(path: impl AsRef<Path>) -> std::path::PathBuf {
|
|
Path::new("../ruff/resources/test/").join(path)
|
|
}
|
|
}
|