ruff_workspace 0.0.3

This is an internal component crate of Ruff
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod configuration;
pub mod options;
pub mod pyproject;
pub mod resolver;

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)
    }
}