Skip to content

Latest commit

 

History

History
60 lines (34 loc) · 799 Bytes

StyleGuide.md

File metadata and controls

60 lines (34 loc) · 799 Bytes

Code Rule

Explanatory notes

Code formatting

When writing code, we use prettier for readability and collaboration efficiency.

File naming and Class naming

The file name must be lowercase and must be hyphenated to distinguish between word spacing.

EX) card-box

If you need more arguments. write two hyphenates.

EX) card-box--text

New style or component

/*
* Title : Example component
* Description : this is example
*/

// ... Some code

/* Example component FINISH */
/* Section Information */

Commit style

New File

add: some text...

Fix Bug

fix: some text...

Feature

feat: some text...

Edit Markdown

doc: some text...

Refactoring

refactor: some text...

Test

test: some text...