chore: move rules to root

This commit is contained in:
iff
2024-12-08 21:13:22 +01:00
parent 79264e1a4e
commit 0c7277f910
18 changed files with 2 additions and 2 deletions

1
core/rules Symbolic link
View File

@@ -0,0 +1 @@
../rules

1
rules
View File

@@ -1 +0,0 @@
core/rules

View File

@@ -1,6 +1,6 @@
# Writing Rules
Rule files placed under [rules](./core/rules) in the project directory are parsed at compilation, everything is parsed to Rust code before compiling. You don't have to know the project structure nor Rust to write blazing fast rules!
Rule files placed under [rules](./rules) in the project directory are parsed at compilation, everything is parsed to Rust code before compiling. You don't have to know the project structure nor Rust to write blazing fast rules!
For compile-time rules, if only rules are changed, cargo won't recompile the project because Rust code were intact. You will have to notify it manually by:
```shell