aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-11-04 14:47:45 +0000
committerAkshay <[email protected]>2021-11-04 14:47:45 +0000
commitb99dbc25294248247460ac0d71724f77a934fe63 (patch)
tree0f7b14c96d22a0bec625a28d4e5af000abfecc0b
parent2939957c48558afc7530a5fc40695f73a6c75f4e (diff)
bump to v0.3.6v0.3.6
-rw-r--r--Cargo.lock2
-rw-r--r--bin/Cargo.toml2
-rw-r--r--readme.md14
3 files changed, 13 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0cde4c2..8bac317 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -431,7 +431,7 @@ checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0"
431 431
432[[package]] 432[[package]]
433name = "statix" 433name = "statix"
434version = "0.3.5" 434version = "0.3.6"
435dependencies = [ 435dependencies = [
436 "ariadne", 436 "ariadne",
437 "clap", 437 "clap",
diff --git a/bin/Cargo.toml b/bin/Cargo.toml
index aa789eb..5498ae3 100644
--- a/bin/Cargo.toml
+++ b/bin/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "statix" 2name = "statix"
3version = "0.3.5" 3version = "0.3.6"
4edition = "2018" 4edition = "2018"
5license = "MIT" 5license = "MIT"
6authors = [ "Akshay <[email protected]>" ] 6authors = [ "Akshay <[email protected]>" ]
diff --git a/readme.md b/readme.md
index d1eda39..cec99ef 100644
--- a/readme.md
+++ b/readme.md
@@ -57,7 +57,17 @@ Basic usage is as simple as:
57statix check /path/to/dir 57statix check /path/to/dir
58 58
59# ignore generated files, such as Cargo.nix 59# ignore generated files, such as Cargo.nix
60statix check /path/to/dir -i '*Cargo.nix' 60statix check /path/to/dir -i Cargo.nix
61
62# ignore more than one file
63statix check /path/to/dir -i a.nix b.nix c.nix
64
65# ignore an entire directory
66statix check /path/to/dir -i .direnv
67
68# statix respects your .gitignore if it exists
69# run statix in "unrestricted" mode, to disable that
70statix check /path/to/dir -u
61 71
62# see `statix -h` for a full list of options 72# see `statix -h` for a full list of options
63``` 73```
@@ -115,8 +125,6 @@ their metadata.
115 125
116## TODO 126## TODO
117 127
118- Offline documentation for each lint
119- Test suite for lints and suggestions 128- Test suite for lints and suggestions
120- Vim plugin (qf list population, apply suggestions)
121- Resolve imports and scopes for better lints 129- Resolve imports and scopes for better lints
122- Add silent flag that exits with status 130- Add silent flag that exits with status