Guarding is a guardians for code, architecture, layered. Using git hooks and DSL for design guard rules.
todo:
Others:
cargo install guarding
guarding.guarding
file
package(".")::file.len should < 200;
package(".")::file.len should > 50;
guarding .
workflow:
DSL capture logic:
rule_level
with rule_scope
Queries Samples: https://github.com/nvim-treesitter/nvim-treesitter/tree/master/queries
for Java, JavaScript
```
class("..myapp..")::function.name should contains("Model");
class("..myapp..")::function.name contains(""); ```
for Rust and Golang
``` struct("..myapp..")::function.name should contains("Model");
struct("..myapp..")::function.name contains(""); ```
This code is distributed under the MIT license. See LICENSE
in this directory.