Skip to content

Commit 9cd244a

Browse files
committed
chore: wip
1 parent 3d27665 commit 9cd244a

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

commitlint.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ const ignore = ['readme-md']
77

88
const components = fs
99
.readdirSync(resolve(__dirname, './resources/components'))
10-
.map((item) => kebabCase(item.replace(/\.(stx|vue)/g, '')))
11-
.filter((item) => !ignore.includes(item))
10+
.map(item => kebabCase(item.replace(/\.(stx|vue)/g, '')))
11+
.filter(item => !ignore.includes(item))
1212

1313
const functions = fs
1414
.readdirSync(resolve(__dirname, './resources/functions'))
15-
.map((item) => kebabCase(item.replace(/.ts/g, '')))
16-
.filter((item) => !ignore.includes(item))
15+
.map(item => kebabCase(item.replace(/.ts/g, '')))
16+
.filter(item => !ignore.includes(item))
1717

1818
const scopes = [...git.scopes, ...components, ...functions]
1919
const uniqueScopes = [...new Set(scopes)]

libs/components/Dashboard/Navbar.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ const isDark = useDark()
44
const theme = ref(isDark.value ? 'dark' : 'light')
55
66
watch(theme, (currentVal) => {
7-
if (currentVal === 'light') isDark.value = false
7+
if (currentVal === 'light')
8+
isDark.value = false
89
else isDark.value = true
910
1011
useToggle(isDark)

libs/components/Marketing/Fields.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const type = ref('text')
44
const label = ref('')
55
const className = ref('')
66
const id = ref(Math.random().toString(36).substring(7))
7-
const formClasses =
8-
'block w-full appearance-none rounded-md border border-gray-200 bg-gray-50 px-3 py-2 text-gray-900 placeholder-gray-400 focus:border-blue-500 focus:bg-white focus:outline-none focus:ring-blue-500 sm:text-sm'
7+
const formClasses
8+
= 'block w-full appearance-none rounded-md border border-gray-200 bg-gray-50 px-3 py-2 text-gray-900 placeholder-gray-400 focus:border-blue-500 focus:bg-white focus:outline-none focus:ring-blue-500 sm:text-sm'
99
</script>
1010

1111
<template>

libs/components/Marketing/PrimaryFeatures2.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ const features = [
1414
{
1515
title: 'Payroll',
1616
description:
17-
"Keep track of everyone's salaries and whether or not they've been paid. Direct deposit not supported.",
17+
'Keep track of everyone\'s salaries and whether or not they\'ve been paid. Direct deposit not supported.',
1818
image: screenshotPayroll,
1919
},
2020
{
2121
title: 'Claim expenses',
22-
description: "All of your receipts organized into one place, as long as you don't mind typing in the data by hand.",
22+
description: 'All of your receipts organized into one place, as long as you don\'t mind typing in the data by hand.',
2323
// image: screenshotExpenses,
2424
},
2525
{
2626
title: 'VAT handling',
2727
description:
28-
"We only sell our software to companies who don't deal with VAT at all, so technically we do all the VAT stuff they need.",
28+
'We only sell our software to companies who don\'t deal with VAT at all, so technically we do all the VAT stuff they need.',
2929
// image: screenshotVatReturns,
3030
},
3131
{

libs/components/Marketing/SecondaryFeatures.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const features = [
1515
name: 'Buddy CLI',
1616
summary: 'The Stacks runtime.',
1717
description:
18-
"The Buddy toolkit makes it easy to interact with all your application needs. From development to releases and upgrades, this handy yet incredible tool is the last thing you'll ever need.",
18+
'The Buddy toolkit makes it easy to interact with all your application needs. From development to releases and upgrades, this handy yet incredible tool is the last thing you\'ll ever need.',
1919
image:
2020
'https://salient.tailwindui.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fprofit-loss.2a2f85d5.png&w=1200&q=75',
2121
icon: '',

libs/components/Marketing/Testimonials.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const testimonials = [
2929
[
3030
{
3131
content:
32-
"Getting started with Stacks was incredibly easy. The Buddy toolkit has been a game changer for my project. I suggest you guys give it a try today! It's probably one of the best decisions you'll ever do for yourself this year.",
32+
'Getting started with Stacks was incredibly easy. The Buddy toolkit has been a game changer for my project. I suggest you guys give it a try today! It\'s probably one of the best decisions you\'ll ever do for yourself this year.',
3333
author: {
3434
name: 'Leland Kiehn',
3535
role: 'Founder of Kiehn and Sons',

0 commit comments

Comments
 (0)