Live editor experience for Kong Spec Renderer
https://github.com/Kong/spec-editor.git
A playground with live editor for Kong's spec renderer. Supports:
pnpm install
pnpm dev
pnpm typecheck
Lint package files, and optionally auto-fix detected issues.
# Stylelint only
pnpm run stylelint
# Stylelint and fix
pnpm run stylelint:fix
# ESLint only
pnpm run lint
# ESLint and fix
pnpm run lint:fix
pnpm run build
This repo uses Conventional Commits.
Commitizen and Commitlint are used to help build and enforce commit messages.
It is highly recommended to use the following command in order to create your commits:
pnpm run commit
This will trigger the Commitizen interactive prompt for building your commit message.
Lefthook is used to manage Git Hooks within the repo.
commit-msg hook is automatically setup that enforces commit message stands with commitlint, see lefthook.ymalpre-push hook is used that runs eslint before allowing you to push your changes to the repositorycommitlint to validate the commits associated with a PR in the Lint and Validate job.