Skip to content

Commit

Permalink
Misspell macos fix (#1993)
Browse files Browse the repository at this point in the history
* add misspell_warn task
  • Loading branch information
djptek committed Jul 12, 2022
1 parent b57b9e6 commit 094252d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.next.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ Thanks, you're awesome :-) -->

#### Bugfixes

* Added Deprecation Warning for `misspell` task #1993

#### Added

* Introduce `expected_values` attribute. #1952
Expand Down
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ all: generate experimental
# Check verifies that all of the committed files that are generated are
# up-to-date.
.PHONY: check
check: generate experimental test fmt misspell makelint
check: generate experimental test fmt misspell_warn makelint
# Check if diff is empty.
git diff | cat
git update-index --refresh
Expand Down Expand Up @@ -86,6 +86,11 @@ misspell:
fi
./build/misspell/bin/misspell -error README.md CONTRIBUTING.md schemas/* docs/* experimental/schemas/*

# Warn re misspell removal
.PHONY: misspell_warn
misspell_warn:
@echo "Warning: due to lack of cross-platform support, misspell is no longer included in this task and may be deprecated in future\n"

.PHONY: reload_docs
reload_docs: generator docs

Expand Down

0 comments on commit 094252d

Please sign in to comment.