Configure ESLint and Prettier
This commit is contained in:
parent
c688bf1cda
commit
0116ba3ac1
7 changed files with 1023 additions and 16 deletions
14
Justfile
14
Justfile
|
|
@ -1,10 +1,14 @@
|
|||
# Start development server
|
||||
dev:
|
||||
# pnpm dev
|
||||
serve-dev:
|
||||
pnpm dev
|
||||
|
||||
# Start production preview server
|
||||
serve-preview:
|
||||
pnpm preview
|
||||
|
||||
# Build for production
|
||||
build:
|
||||
# pnpm build
|
||||
pnpm build
|
||||
# cargo build
|
||||
|
||||
# Run tests
|
||||
|
|
@ -14,9 +18,9 @@ test:
|
|||
|
||||
# Run linter
|
||||
lint:
|
||||
# pnpm lint
|
||||
pnpm lint
|
||||
|
||||
# Format code
|
||||
format:
|
||||
# pnpm fmt
|
||||
pnpm format
|
||||
# cargo fmt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue