Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 1.41 KB

CONTRIBUTING.md

File metadata and controls

36 lines (31 loc) · 1.41 KB

Contributing

  • The project is using Kanban as an Agile framework.
  • To raise a bug or submit a feature request, please open an issue.
  • If you want to work on an existing issue please ask to be assigned, this will help to let others know you'll be working on it.

Submitting a Pull Request (PR)

  • The pull request name must be titled as below: prefix(#issue_number): issue_name. See an example
  • Use one of the prefixes defined below:
    • build(#): Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
    • chore(#): Updating tasks etc; no production code change
    • doc(#): Documentation only changes
    • feat(#): for new features
    • fix(#): bug fixes
    • i18n(#): translations related
    • perf(#): A code change that improves performance
    • refactor(#): A code change that neither fixes a bug nor adds a feature
    • style(#): Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)

Development Setup

This Vue 3 project was initialized with Vite.

  • After cloning the repo, run:
$ npm install

Commonly used NPM scripts

# Compile and Hot-Reload for Development
npm run dev

# Compile and Minify for Production
npm run build

# Lint with ESLint
npm run lint