Skip to content

Commit

Permalink
Format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
binwiederhier committed Oct 29, 2023
1 parent 8e04912 commit b3534ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ help:
@echo " make web-deps - Install web app dependencies (npm install the universe)"
@echo " make web-build - Actually build the web app"
@echo " make web-lint - Run eslint on the web app"
@echo " make web-format - Run prettier on the web app"
@echo " make web-format-check - Run prettier on the web app, but don't change anything"
@echo " make web-fmt - Run prettier on the web app"
@echo " make web-fmt-check - Run prettier on the web app, but don't change anything"
@echo
@echo "Build documentation:"
@echo " make docs - Build the documentation"
Expand Down Expand Up @@ -151,10 +151,10 @@ web-deps:
web-deps-update:
cd web && npm update

web-format:
web-fmt:
cd web && npm run format

web-format-check:
web-fmt-check:
cd web && npm run format:check

web-lint:
Expand Down Expand Up @@ -248,7 +248,7 @@ cli-build-results:

# Test/check targets

check: test web-format-check fmt-check vet web-lint lint staticcheck
check: test web-fmt-check fmt-check vet web-lint lint staticcheck

test: .PHONY
go test $(shell go list ./... | grep -vE 'ntfy/(test|examples|tools)')
Expand All @@ -275,7 +275,7 @@ coverage-upload:

# Lint/formatting targets

fmt:
fmt: web-fmt
gofmt -s -w .

fmt-check:
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const hashCode = (s) => {
* convert `i18n.language` style str (e.g.: `en_US`) to kebab-case (e.g.: `en-US`),
* which is expected by `<html lang>` and `Intl.DateTimeFormat`
*/
export const getKebabCaseLangStr = (language) => language.replace(/_/g, '-');
export const getKebabCaseLangStr = (language) => language.replace(/_/g, "-");

export const formatShortDateTime = (timestamp, language) =>
new Intl.DateTimeFormat(getKebabCaseLangStr(language), {
Expand Down

0 comments on commit b3534ae

Please sign in to comment.