Skip to content

Commit

Permalink
add prettier config and some fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlundien committed Nov 1, 2023
1 parent 875c6e5 commit 7d17647
Show file tree
Hide file tree
Showing 7 changed files with 11,049 additions and 6,104 deletions.
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.keep
node_modules
npm-packages
13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"bracketSameLine": false,
"htmlWhitespaceSensitivity": "css",
"printWidth": 160,
"quoteProps": "consistent",
"semi": false,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"vueIndentScriptAndStyle": true
}
4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
import { IconDefinition } from '@fortawesome/fontawesome-svg-core'
import { DefineComponent } from 'vue'

interface FontAwesomeIconProps {
Expand All @@ -7,6 +7,7 @@ interface FontAwesomeIconProps {
flip?: 'horizontal' | 'vertical' | 'both'
icon: object | Array<string> | string | IconDefinition
mask?: object | Array<string> | string
maskId?: object | Array<string> | string
listItem?: boolean
pull?: 'right' | 'left'
pulse?: boolean
Expand All @@ -17,6 +18,7 @@ interface FontAwesomeIconProps {
transform?: object | string
symbol?: boolean | string
title?: string
titleId?: string
inverse?: boolean
bounce?: boolean
shake?: boolean
Expand Down

0 comments on commit 7d17647

Please sign in to comment.