See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| { | |
| "diffEditor.renderSideBySide": true, | |
| "editor.fontSize": 14, | |
| "editor.lineHeight": 22, | |
| "editor.tabSize": 2, | |
| "editor.matchBrackets": "never", | |
| "editor.cursorBlinking": "solid", | |
| "editor.selectionHighlight": false, | |
| "editor.occurrencesHighlight": "off", | |
| "editor.scrollbar.horizontal": "hidden", |
| { | |
| "opportunityid": "60586640-3692-eb11-b1ac-000d3a58be1e", | |
| "product_opportunities": [ | |
| { | |
| "@odata.etag": "W/\"201645144\"", | |
| "productassociationid": null, | |
| "results_modelo": 2021, | |
| "entityimage": null, | |
| "lineitemnumber": null, | |
| "_createdby_value": "1f873d28-1e8e-ea11-a811-000d3a591fb8", |
| import { ITEMS_PER_PAGE } from '$lib/pagination'; | |
| import { prisma } from '$lib/server/prisma'; | |
| import type { PageServerLoad } from './$types'; | |
| export const load: PageServerLoad = async ({ url }) => { | |
| const page = Number(url.searchParams.get('page') ?? 0); | |
| if(page < 0) { | |
| // redirect | |
| const redirectUrl = new URL(url); |
| <script lang="ts"> | |
| import { | |
| Dialog, | |
| DialogDescription, | |
| DialogOverlay, | |
| DialogTitle | |
| } from '@rgossiaux/svelte-headlessui'; | |
| import { CheckIcon, SearchIcon, XIcon } from 'lucide-svelte'; | |
| export let initialItemId: string | undefined; |