Skip to content

Commit eea4c47

Browse files
committed
move source to src and reenable biome
1 parent 32f1f68 commit eea4c47

File tree

5 files changed

+280
-263
lines changed

5 files changed

+280
-263
lines changed

biome.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
3-
"files": {
4-
"include": ["src/spreadsheet.ts"]
5-
},
6-
"linter": {
7-
"enabled": true,
8-
"rules": {
9-
"recommended": true
10-
}
11-
}
2+
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
3+
"files": {
4+
"ignore": ["node_modules", "dist", "build", "coverage"]
5+
},
6+
"linter": {
7+
"enabled": true,
8+
"rules": {
9+
"recommended": true,
10+
"suspicious": {
11+
"noExplicitAny": "off"
12+
}
13+
}
14+
},
15+
"formatter": {
16+
"enabled": true,
17+
"indentWidth": 2,
18+
"indentStyle": "space",
19+
"lineEnding": "lf"
20+
}
1221
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sqlpage_spreadsheet",
33
"version": "1.0.0",
44
"description": "sqlpage spreadsheet component",
5-
"source": "./spreadsheet_component.html",
5+
"source": "./src/spreadsheet_component.html",
66
"scripts": {
77
"build": "parcel build",
88
"lint": "biome check",

spreadsheet.ts

Lines changed: 0 additions & 252 deletions
This file was deleted.

0 commit comments

Comments
 (0)