Skip to content

Commit e59f4ed

Browse files
committed
chore: biome tool added into the project
1 parent c819757 commit e59f4ed

11 files changed

+245
-115
lines changed

biome.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.7.0/schema.json",
3+
"organizeImports": {
4+
"enabled": true
5+
},
6+
"files": {
7+
"include": ["./src"],
8+
"ignore": ["node_modules/**", "dist/**", "build/**", "coverage/**", "public/**", "docs/**"]
9+
},
10+
"linter": {
11+
"enabled": true,
12+
"rules": {
13+
"recommended": true,
14+
"complexity": {
15+
"useLiteralKeys": "off"
16+
}
17+
}
18+
},
19+
"javascript": {
20+
"formatter": {
21+
"semicolons": "asNeeded",
22+
"lineWidth": 100,
23+
"quoteStyle": "single",
24+
"indentStyle": "space"
25+
}
26+
}
27+
}

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
"bundlesize": "bundlesize",
1616
"esbuild": "esbuild",
1717
"test": "jest",
18+
"biome:lint": "biome lint --apply ./src",
19+
"biome:format": "biome format --write ./src",
20+
"biome:pre-commit": "npm run biome:lint && npm run biome:format",
1821
"postbuild": "npm run types && npm run bundlesize",
1922
"prepublishOnly": "npm run build"
2023
},
@@ -49,6 +52,7 @@
4952
},
5053
"homepage": "https://github.com/ReactTooltip/react-tooltip#readme",
5154
"devDependencies": {
55+
"@biomejs/biome": "^1.7.0",
5256
"@rollup/plugin-commonjs": "26.0.1",
5357
"@rollup/plugin-node-resolve": "15.2.3",
5458
"@rollup/plugin-replace": "5.0.7",

rollup.config.prod.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const config = allBuildFormats.map(
103103
}),
104104
]
105105

106-
if (specificPlugins && specificPlugins.length) {
106+
if (specificPlugins?.length) {
107107
plugins.push(...specificPlugins)
108108
}
109109

src/App.tsx

+26-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
/* eslint-disable jsx-a11y/no-static-element-interactions */
22
/* eslint-disable jsx-a11y/click-events-have-key-events */
33
import { TooltipController as Tooltip } from 'components/TooltipController'
4-
import { IPosition, TooltipRefProps } from 'components/Tooltip/TooltipTypes.d'
5-
import React, { useEffect, useRef, useState } from 'react'
4+
import type { IPosition, TooltipRefProps } from 'components/Tooltip/TooltipTypes.d'
5+
import type React from 'react'
6+
import { useEffect, useRef, useState } from 'react'
67
import { inline, offset } from '@floating-ui/dom'
78
import styles from './styles.module.css'
89

@@ -81,13 +82,15 @@ function App() {
8182
<p>
8283
<button
8384
id="button2"
85+
type="button"
8486
data-tooltip-content="Hello World from a Tooltip 2"
8587
onClick={handleButtonClick}
8688
>
8789
Hover or focus me
8890
</button>
8991
<button
9092
id="button3"
93+
type="button"
9194
data-tooltip-content="Hello World from a Tooltip 3"
9295
onClick={handleButtonClick}
9396
>
@@ -97,11 +100,19 @@ function App() {
97100
</section>
98101
<section id="section-anchor-select" style={{ marginTop: '100px' }}>
99102
<p>
100-
<button data-tooltip-id="anchor-select" data-tooltip-content="this content is different">
103+
<button
104+
type="button"
105+
data-tooltip-id="anchor-select"
106+
data-tooltip-content="this content is different"
107+
>
101108
Anchor select
102109
</button>
103-
<button data-tooltip-id="anchor-select">Anchor select 2</button>
104-
<button data-tooltip-id="anchor-select">Anchor select 3</button>
110+
<button type="button" type="button" data-tooltip-id="anchor-select">
111+
Anchor select 2
112+
</button>
113+
<button type="button" type="button" data-tooltip-id="anchor-select">
114+
Anchor select 3
115+
</button>
105116
</p>
106117
<Tooltip id="anchor-select">Tooltip content</Tooltip>
107118
<Tooltip
@@ -163,6 +174,7 @@ function App() {
163174
/>
164175
</div>
165176
<button
177+
type="button"
166178
id="imperativeTooltipButton"
167179
style={{ height: 40, marginLeft: 100 }}
168180
onClick={() => {
@@ -184,7 +196,9 @@ function App() {
184196
</div>
185197

186198
<div style={{ marginTop: '1rem' }}>
187-
<button id="buttonCallbacks">Check the dev console</button>
199+
<button type="button" id="buttonCallbacks">
200+
Check the dev console
201+
</button>
188202
<Tooltip
189203
place="bottom"
190204
anchorSelect="#buttonCallbacks"
@@ -195,7 +209,9 @@ function App() {
195209
content="Showing tooltip and calling afterShow method"
196210
/>
197211

198-
<button id="buttonCallbacksClick">With click event</button>
212+
<button type="button" id="buttonCallbacksClick">
213+
With click event
214+
</button>
199215
<Tooltip
200216
openOnClick
201217
place="bottom"
@@ -207,7 +223,9 @@ function App() {
207223
content="Showing tooltip and calling afterShow method"
208224
/>
209225

210-
<button id="buttonCallbacksDelay">With delay</button>
226+
<button type="button" id="buttonCallbacksDelay">
227+
With delay
228+
</button>
211229
<Tooltip
212230
delayShow={1000}
213231
place="bottom"

src/components/Tooltip/Tooltip.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,10 @@ const Tooltip = ({
508508
window.addEventListener('click', handleClickOutsideAnchors)
509509
}
510510

511-
const enabledEvents: { event: string; listener: (event?: Event) => void }[] = []
511+
const enabledEvents: {
512+
event: string
513+
listener: (event?: Event) => void
514+
}[] = []
512515

513516
const handleClickOpenTooltipAnchor = (event?: Event) => {
514517
if (show && event?.target === activeAnchor) {

src/components/TooltipController/TooltipController.tsx

+9-2
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,11 @@ const TooltipController = React.forwardRef<TooltipRefProps, ITooltipController>(
224224

225225
// do not check for subtree and childrens, we only want to know attribute changes
226226
// to stay watching `data-attributes-*` from anchor element
227-
const observerConfig = { attributes: true, childList: false, subtree: false }
227+
const observerConfig = {
228+
attributes: true,
229+
childList: false,
230+
subtree: false,
231+
}
228232

229233
if (activeAnchor) {
230234
const dataAttributes = getDataAttributesFromAnchorElement(activeAnchor)
@@ -264,7 +268,10 @@ const TooltipController = React.forwardRef<TooltipRefProps, ITooltipController>(
264268
if (render) {
265269
const actualContent =
266270
activeAnchor?.getAttribute('data-tooltip-content') || tooltipContent || null
267-
const rendered = render({ content: actualContent, activeAnchor }) as React.ReactNode
271+
const rendered = render({
272+
content: actualContent,
273+
activeAnchor,
274+
}) as React.ReactNode
268275
renderedContent = rendered ? (
269276
<div ref={contentWrapperRef} className="react-tooltip-content-wrapper">
270277
{rendered}

src/test/utils.spec.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ describe('compute positions', () => {
99
tooltipArrowReference: null,
1010
})
1111

12-
expect(value).toEqual({ tooltipStyles: {}, tooltipArrowStyles: {}, place: 'top' })
12+
expect(value).toEqual({
13+
tooltipStyles: {},
14+
tooltipArrowStyles: {},
15+
place: 'top',
16+
})
1317
})
1418

1519
test('empty tooltip reference element', async () => {
@@ -20,7 +24,11 @@ describe('compute positions', () => {
2024
tooltipArrowReference: null,
2125
})
2226

23-
expect(value).toEqual({ tooltipStyles: {}, tooltipArrowStyles: {}, place: 'top' })
27+
expect(value).toEqual({
28+
tooltipStyles: {},
29+
tooltipArrowStyles: {},
30+
place: 'top',
31+
})
2432
})
2533

2634
test('empty tooltip arrow reference element', async () => {

src/utils/compute-tooltip-position-types.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CSSProperties } from 'react'
1+
import type { CSSProperties } from 'react'
22
import type { Middleware, PlacesType } from '../components/Tooltip/TooltipTypes'
33

44
export interface IComputePositionArgs {

src/utils/compute-tooltip-position.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ const computeTooltipPosition = async ({
8282
}
8383
/* c8 ignore end */
8484

85-
return { tooltipStyles: styles, tooltipArrowStyles: arrowStyle, place: placement }
85+
return {
86+
tooltipStyles: styles,
87+
tooltipArrowStyles: arrowStyle,
88+
place: placement,
89+
}
8690
})
8791
}
8892

0 commit comments

Comments
 (0)