skyspell_core 3.0.0

skyspell core library
Documentation
#[macro_use]
extern crate lazy_static;

mod dictionary;
pub mod enchant;
pub mod ignore;
pub mod operations;
pub mod os_io;
pub mod project;
pub mod skip_file;
pub mod tests;
pub mod tokens;

pub use crate::enchant::EnchantDictionary;
pub use checker::{Checker, CheckerState};
pub use dictionary::Dictionary;
pub use ignore::{global_path, GlobalIgnore, IgnoreStore, LocalIgnore};
pub use operations::Operation;
pub use os_io::{OperatingSystemIO, StandardIO};
pub use project::{Project, ProjectPath, RelativePath, SKYSPELL_LOCAL_IGNORE};
pub use skip_file::SkipFile;
pub use tokens::TokenProcessor;
pub(crate) mod checker;