Skip to content

Files

Latest commit

Sep 2, 2019
d8cd6de · Sep 2, 2019

History

History
18 lines (14 loc) · 425 Bytes

CONVENTIONS.md

File metadata and controls

18 lines (14 loc) · 425 Bytes

Standard conventions

Provide some standard conventions that help consistency, more readable code

Naming Conventions

Directory

Should be lowercase for directory

File Name

  • Vue Component file name should be Pascal
  • Others should be lowercase file name

Class, Function, Variable

  • No using snake-case
  • private should be camelCase
  • public should be Pascal
  • constants should be UPPER_CASE

DO & DON'T