Skip to content

Commit 771da34

Browse files
committed
chore(lint): fixes
1 parent 697f835 commit 771da34

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,15 @@ Helper classes for using [Formkit](https://formkit.com/) with the [PrimeVue UI F
1111
## Usage
1212

1313
```typescript
14-
1514
import { defaultConfig, plugin } from '@formkit/vue'
1615
import { primeInputs } from '@sfxcode/formkit-primevue'
1716

18-
app.use(plugin, defaultConfig({
19-
locales: { de, en },
20-
// Define the active locale
21-
locale: 'en',
22-
inputs: primeInputs,
23-
}))
17+
app.use(plugin, defaultConfig({
18+
locales: { de, en },
19+
// Define the active locale
20+
locale: 'en',
21+
inputs: primeInputs,
22+
}))
2423
```
2524

2625
### Schema Helper Functions

test/useFormKitSchema.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ it('add group', () => {
3535
expect(group.$formkit).toBe('group')
3636
expect(renderToBoolean(group)).toBe(true)
3737
expect(group.name).toBe('name')
38-
3938
})
4039

4140
it('add list', () => {
@@ -45,5 +44,4 @@ it('add list', () => {
4544
expect(list.$formkit).toBe('list')
4645
expect(renderToBoolean(list)).toBe(true)
4746
expect(list.name).toBe('name')
48-
4947
})

0 commit comments

Comments
 (0)