You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"codespell not found. Please install it by running the command `pipx install codespell` or refer to the following link for more information: https://github.com/codespell-project/codespell"\
107
112
exit 1;\
108
113
}
109
114
codespell --skip "*.json"
110
115
116
+
.PHONY: lint
111
117
lint: ## Run all linters.
112
118
make fmt &&\
113
119
make lint-clippy &&\
@@ -119,6 +125,12 @@ lint: ## Run all linters.
119
125
clean: ## Clean the project.
120
126
cargo clean
121
127
122
-
pr: ## Run all tests and linters in preparation for a PR.
0 commit comments