Skip to content

Commit b834312

Browse files
committed
chore: resolve lint issues
1 parent 058abd3 commit b834312

File tree

6 files changed

+23
-17
lines changed

6 files changed

+23
-17
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bun install bun-spreadsheets
3030
Now, you can use it in your project:
3131

3232
```ts
33-
import { spreadsheet, createSpreadsheet } from 'bun-spreadsheets'
33+
import { createSpreadsheet, spreadsheet } from 'bun-spreadsheets'
3434

3535
// Create a spreadsheet
3636
const data = {

bunfig.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[install]
2+
registry = { url = "https://registry.npmjs.org/", token = "$BUN_AUTH_TOKEN" }
3+
peer = true

src/index.ts

+11-9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import type {
66
SpreadsheetOptions,
77
SpreadsheetType,
88
} from './types'
9+
import { Buffer } from 'node:buffer'
910

1011
export const spreadsheet: Spreadsheet = Object.assign(
1112
(data: Content) => ({
@@ -59,7 +60,8 @@ export const spreadsheet: Spreadsheet = Object.assign(
5960
store: async ({ content }: SpreadsheetContent, path: string): Promise<void> => {
6061
try {
6162
await Bun.write(path, content)
62-
} catch (error) {
63+
}
64+
catch (error) {
6365
throw new Error(`Failed to store spreadsheet: ${(error as Error).message}`)
6466
}
6567
},
@@ -107,7 +109,7 @@ export function generateCSVContent(content: Content): string {
107109
const rows = [content.headings, ...content.data]
108110

109111
return rows
110-
.map((row) =>
112+
.map(row =>
111113
row
112114
.map((cell) => {
113115
const cellString = String(cell)
@@ -165,7 +167,7 @@ export function generateExcelContent(content: Content): Uint8Array {
165167
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/>
166168
</Relationships>`
167169

168-
const files: Array<{ name: string; content: Uint8Array }> = [
170+
const files: Array<{ name: string, content: Uint8Array }> = [
169171
{ name: '[Content_Types].xml', content: new Uint8Array(Buffer.from(contentTypes)) },
170172
{ name: '_rels/.rels', content: new Uint8Array(Buffer.from(rels)) },
171173
{ name: 'xl/workbook.xml', content: workbook },
@@ -177,7 +179,7 @@ export function generateExcelContent(content: Content): Uint8Array {
177179
const header = new Uint8Array(30 + file.name.length)
178180
const headerView = new DataView(header.buffer)
179181

180-
headerView.setUint32(0, 0x04034b50, true) // 'PK\x03\x04'
182+
headerView.setUint32(0, 0x04034B50, true) // 'PK\x03\x04'
181183
headerView.setUint32(4, 0x0008, true)
182184
headerView.setUint32(18, compressedContent.length, true)
183185
headerView.setUint32(22, file.content.length, true)
@@ -193,7 +195,7 @@ export function generateExcelContent(content: Content): Uint8Array {
193195
const header = new Uint8Array(46 + file.name.length)
194196
const headerView = new DataView(header.buffer)
195197

196-
headerView.setUint32(0, 0x02014b50, true) // 'PK\x01\x02'
198+
headerView.setUint32(0, 0x02014B50, true) // 'PK\x01\x02'
197199
headerView.setUint16(4, 0x0014, true)
198200
headerView.setUint16(6, 0x0008, true)
199201
headerView.setUint32(8, 0x0008, true)
@@ -213,10 +215,10 @@ export function generateExcelContent(content: Content): Uint8Array {
213215

214216
const endOfCentralDirectory = new Uint8Array(22)
215217

216-
const totalSize =
217-
zipData.reduce((acc, { header, compressedContent }) => acc + header.length + compressedContent.length, 0) +
218-
centralDirectory.reduce((acc, header) => acc + header.length, 0) +
219-
endOfCentralDirectory.length
218+
const totalSize
219+
= zipData.reduce((acc, { header, compressedContent }) => acc + header.length + compressedContent.length, 0)
220+
+ centralDirectory.reduce((acc, header) => acc + header.length, 0)
221+
+ endOfCentralDirectory.length
220222

221223
// Create a single Uint8Array with the total size
222224
const result = new Uint8Array(totalSize)

src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export type SpreadsheetOptions = Partial<{
3131

3232
export type FileExtension = '.csv' | '.xlsx'
3333

34-
export type Spreadsheet = {
34+
export interface Spreadsheet {
3535
(
3636
data: Content,
3737
): {

test/spreadsheets.test.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import type { Content } from '../src/types'
12
import { afterEach, beforeEach, describe, expect, it } from 'bun:test'
23
import { existsSync, unlinkSync } from 'node:fs'
34
import { createSpreadsheet, spreadsheet } from '../src/index'
4-
import type { Content } from '../src/types'
55

66
describe('bun-spreadsheets', () => {
77
let testData: Content
@@ -118,7 +118,8 @@ describe('bun-spreadsheets', () => {
118118
await spreadsheet(testData).csv().store('output.csv')
119119
// If we reach here, no error was thrown
120120
expect(true).toBe(true)
121-
} catch (error) {
121+
}
122+
catch (error) {
122123
console.error('Error in method chaining:', error)
123124
// Fail the test if an error is caught
124125
expect(error).toBeUndefined()

tsconfig.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"strict": true,
1212
"strictNullChecks": true,
1313
"noFallthroughCasesInSwitch": true,
14+
"declaration": true,
1415
"noEmit": true,
1516
"esModuleInterop": true,
1617
"forceConsistentCasingInFileNames": true,
18+
"isolatedDeclarations": true,
19+
"isolatedModules": true,
1720
"verbatimModuleSyntax": true,
1821
"skipDefaultLibCheck": true,
19-
"skipLibCheck": true,
20-
"isolatedModules": true,
21-
"declaration": true,
22-
"isolatedDeclarations": true
22+
"skipLibCheck": true
2323
}
2424
}

0 commit comments

Comments
 (0)