Expand description
Language-specific validation implementations
Provides language-specific validators for:
- Rust: cargo check, clippy
- TypeScript: tsc, eslint
- Python: mypy, pylint
- Go: go vet, golangci-lint
- Java: javac, checkstyle
Structs§
- GoValidator
- Go validator using go vet and golangci-lint
- Java
Validator - Java validator using javac and checkstyle
- Python
Validator - Python validator using mypy and pylint
- Rust
Validator - Rust validator using cargo check and clippy
- Type
Script Validator - TypeScript validator using tsc and eslint
Traits§
- Language
Validator - Trait for language-specific validators
Functions§
- get_
validator - Gets the appropriate validator for a language