mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 02:20:58 -05:00
317 lines
7.9 KiB
Rust
317 lines
7.9 KiB
Rust
use std::io::Read;
|
|
|
|
pub trait ConfigSource {
|
|
fn walk(&self) -> Option<&dyn WalkSource> {
|
|
None
|
|
}
|
|
|
|
fn default(&self) -> Option<&dyn FileSource> {
|
|
None
|
|
}
|
|
}
|
|
|
|
pub trait WalkSource {
|
|
/// Search binary files.
|
|
fn binary(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Skip hidden files and directories.
|
|
fn ignore_hidden(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Respect ignore files.
|
|
fn ignore_files(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Respect .ignore files.
|
|
fn ignore_dot(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Respect ignore files in vcs directories.
|
|
fn ignore_vcs(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Respect global ignore files.
|
|
fn ignore_global(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Respect ignore files in parent directories.
|
|
fn ignore_parent(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
}
|
|
|
|
pub trait FileSource {
|
|
/// Verifying spelling in file names.
|
|
fn check_filename(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Verifying spelling in filess.
|
|
fn check_file(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Do not check identifiers that appear to be hexadecimal values
|
|
fn ignore_hex(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Allow identifiers to include digits, in addition to letters
|
|
fn identifier_include_digits(&self) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
/// Specify additional characters to be included in identifiers
|
|
fn identifier_include_chars(&self) -> Option<&str> {
|
|
None
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)]
|
|
#[serde(deny_unknown_fields, default)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Config {
|
|
pub files: Walk,
|
|
pub default: FileConfig,
|
|
}
|
|
|
|
impl Config {
|
|
pub fn from_file(path: &std::path::Path) -> Result<Self, failure::Error> {
|
|
let mut file = std::fs::File::open(path)?;
|
|
let mut s = String::new();
|
|
file.read_to_string(&mut s)?;
|
|
Self::from_toml(&s)
|
|
}
|
|
|
|
pub fn from_toml(data: &str) -> Result<Self, failure::Error> {
|
|
let content = toml::from_str(data)?;
|
|
Ok(content)
|
|
}
|
|
|
|
pub fn derive(cwd: &std::path::Path) -> Result<Self, failure::Error> {
|
|
if let Some(path) = find_project_file(cwd.to_owned(), "typos.toml") {
|
|
Self::from_file(&path)
|
|
} else {
|
|
Ok(Default::default())
|
|
}
|
|
}
|
|
|
|
pub fn update(&mut self, source: &dyn ConfigSource) {
|
|
if let Some(walk) = source.walk() {
|
|
self.files.update(walk);
|
|
}
|
|
if let Some(default) = source.default() {
|
|
self.default.update(default);
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ConfigSource for Config {
|
|
fn walk(&self) -> Option<&dyn WalkSource> {
|
|
Some(&self.files)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)]
|
|
#[serde(deny_unknown_fields, default)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Walk {
|
|
pub binary: Option<bool>,
|
|
pub ignore_hidden: Option<bool>,
|
|
pub ignore_files: Option<bool>,
|
|
pub ignore_dot: Option<bool>,
|
|
pub ignore_vcs: Option<bool>,
|
|
pub ignore_global: Option<bool>,
|
|
pub ignore_parent: Option<bool>,
|
|
}
|
|
|
|
impl Walk {
|
|
pub fn update(&mut self, source: &dyn WalkSource) {
|
|
if let Some(source) = source.binary() {
|
|
self.binary = Some(source);
|
|
}
|
|
if let Some(source) = source.ignore_hidden() {
|
|
self.ignore_hidden = Some(source);
|
|
}
|
|
if let Some(source) = source.ignore_files() {
|
|
self.ignore_files = Some(source);
|
|
self.ignore_dot = None;
|
|
self.ignore_vcs = None;
|
|
self.ignore_global = None;
|
|
self.ignore_parent = None;
|
|
}
|
|
if let Some(source) = source.ignore_dot() {
|
|
self.ignore_dot = Some(source);
|
|
}
|
|
if let Some(source) = source.ignore_vcs() {
|
|
self.ignore_vcs = Some(source);
|
|
self.ignore_global = None;
|
|
}
|
|
if let Some(source) = source.ignore_global() {
|
|
self.ignore_global = Some(source);
|
|
}
|
|
if let Some(source) = source.ignore_parent() {
|
|
self.ignore_parent = Some(source);
|
|
}
|
|
}
|
|
|
|
pub fn binary(&self) -> bool {
|
|
self.binary.unwrap_or(false)
|
|
}
|
|
|
|
pub fn ignore_hidden(&self) -> bool {
|
|
self.ignore_hidden.unwrap_or(true)
|
|
}
|
|
|
|
pub fn ignore_dot(&self) -> bool {
|
|
self.ignore_dot
|
|
.or_else(|| self.ignore_files)
|
|
.unwrap_or(true)
|
|
}
|
|
|
|
pub fn ignore_vcs(&self) -> bool {
|
|
self.ignore_vcs
|
|
.or_else(|| self.ignore_files)
|
|
.unwrap_or(true)
|
|
}
|
|
|
|
pub fn ignore_global(&self) -> bool {
|
|
self.ignore_global
|
|
.or_else(|| self.ignore_vcs)
|
|
.or_else(|| self.ignore_files)
|
|
.unwrap_or(true)
|
|
}
|
|
|
|
pub fn ignore_parent(&self) -> bool {
|
|
self.ignore_parent
|
|
.or_else(|| self.ignore_files)
|
|
.unwrap_or(true)
|
|
}
|
|
}
|
|
|
|
impl WalkSource for Walk {
|
|
fn binary(&self) -> Option<bool> {
|
|
self.binary
|
|
}
|
|
|
|
fn ignore_hidden(&self) -> Option<bool> {
|
|
self.ignore_hidden
|
|
}
|
|
|
|
fn ignore_files(&self) -> Option<bool> {
|
|
self.ignore_files
|
|
}
|
|
|
|
fn ignore_dot(&self) -> Option<bool> {
|
|
self.ignore_dot
|
|
}
|
|
|
|
fn ignore_vcs(&self) -> Option<bool> {
|
|
self.ignore_vcs
|
|
}
|
|
|
|
fn ignore_global(&self) -> Option<bool> {
|
|
self.ignore_global
|
|
}
|
|
|
|
fn ignore_parent(&self) -> Option<bool> {
|
|
self.ignore_parent
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)]
|
|
#[serde(deny_unknown_fields, default)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct FileConfig {
|
|
pub check_filename: Option<bool>,
|
|
pub check_file: Option<bool>,
|
|
pub ignore_hex: Option<bool>,
|
|
pub identifier_include_digits: Option<bool>,
|
|
pub identifier_include_chars: Option<String>,
|
|
}
|
|
|
|
impl FileConfig {
|
|
pub fn update(&mut self, source: &dyn FileSource) {
|
|
if let Some(source) = source.check_filename() {
|
|
self.check_filename = Some(source);
|
|
}
|
|
if let Some(source) = source.check_file() {
|
|
self.check_file = Some(source);
|
|
}
|
|
if let Some(source) = source.ignore_hex() {
|
|
self.ignore_hex = Some(source);
|
|
}
|
|
if let Some(source) = source.identifier_include_digits() {
|
|
self.identifier_include_digits = Some(source);
|
|
}
|
|
if let Some(source) = source.identifier_include_chars() {
|
|
self.identifier_include_chars = Some(source.to_owned());
|
|
}
|
|
}
|
|
|
|
pub fn check_filename(&self) -> bool {
|
|
self.check_filename.unwrap_or(true)
|
|
}
|
|
|
|
pub fn check_file(&self) -> bool {
|
|
self.check_file.unwrap_or(true)
|
|
}
|
|
|
|
pub fn ignore_hex(&self) -> bool {
|
|
self.ignore_hex.unwrap_or(true)
|
|
}
|
|
|
|
pub fn identifier_include_digits(&self) -> bool {
|
|
self.identifier_include_digits.unwrap_or(true)
|
|
}
|
|
|
|
pub fn identifier_include_chars(&self) -> &str {
|
|
self.identifier_include_chars
|
|
.as_ref()
|
|
.map(|s| s.as_str())
|
|
.unwrap_or("_'")
|
|
}
|
|
}
|
|
|
|
impl FileSource for FileConfig {
|
|
fn check_filename(&self) -> Option<bool> {
|
|
self.check_filename
|
|
}
|
|
|
|
fn check_file(&self) -> Option<bool> {
|
|
self.check_file
|
|
}
|
|
|
|
fn ignore_hex(&self) -> Option<bool> {
|
|
self.ignore_hex
|
|
}
|
|
|
|
fn identifier_include_digits(&self) -> Option<bool> {
|
|
self.identifier_include_digits
|
|
}
|
|
|
|
fn identifier_include_chars(&self) -> Option<&str> {
|
|
self.identifier_include_chars.as_ref().map(|s| s.as_str())
|
|
}
|
|
}
|
|
|
|
fn find_project_file(dir: std::path::PathBuf, name: &str) -> Option<std::path::PathBuf> {
|
|
let mut file_path = dir;
|
|
file_path.push(name);
|
|
while !file_path.exists() {
|
|
file_path.pop(); // filename
|
|
let hit_bottom = !file_path.pop();
|
|
if hit_bottom {
|
|
return None;
|
|
}
|
|
file_path.push(name);
|
|
}
|
|
Some(file_path)
|
|
}
|