From 93b0c13ac3ef2d3e88aba35e653c89f36c8335e3 Mon Sep 17 00:00:00 2001 From: isUnknown Date: Thu, 11 Jul 2024 14:38:06 +0200 Subject: [PATCH] documentation - add emojis --- README.md | 18 +++++++++--------- src/App.vue | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54dd82c..c1b00ef 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,16 @@ VITE_PASSWORD=your-private-password ### Rules and conventions - All `.vue` files' names are written in PascalCase : - - ✗ `sidenav.vue` - - ✗ `sideNav.vue` - - ✔ `SideNav.vue` - - ✔ `Home.vue` + - ⛔ `sidenav.vue` + - ⛔ `sideNav.vue` + - ✅ `SideNav.vue` + - ✅ `Home.vue` - Stores files' names, located in `/src/stores/`, are written in camelCase and doesn't include the word "Store" : - - ✗ `Api.js` - - ✗ `ApiStore.js` - - ✗ `apiStore.js` - - ✔ `api.js` - - ✔ `pageData.js` + - ⛔ `Api.js` + - ⛔ `ApiStore.js` + - ⛔ `apiStore.js` + - ✅ `api.js` + - ✅ `pageData.js` ### Creating a page diff --git a/src/App.vue b/src/App.vue index 8172e23..8223719 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,9 +3,9 @@