Add oxlint, oxfmt, typescript-go
- oxlint with react, react-hooks, typescript, import, unicorn plugins
- oxfmt (no trailing commas, single quotes, sorted imports)
- tsgo (typescript-go native preview) for fast typechecking
- Fix all lint warnings: non-null assertions, unused expressions, stale closures
- Scripts: lint, format, typecheck, check
2026-02-27 12:52:04 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
|
|
|
"trailingComma": "none",
|
|
|
|
|
"tabWidth": 2,
|
|
|
|
|
"semi": false,
|
|
|
|
|
"singleQuote": true,
|
|
|
|
|
"printWidth": 100,
|
|
|
|
|
"arrowParens": "always",
|
2026-03-06 18:43:23 +00:00
|
|
|
"sortImports": {
|
Add oxlint, oxfmt, typescript-go
- oxlint with react, react-hooks, typescript, import, unicorn plugins
- oxfmt (no trailing commas, single quotes, sorted imports)
- tsgo (typescript-go native preview) for fast typechecking
- Fix all lint warnings: non-null assertions, unused expressions, stale closures
- Scripts: lint, format, typecheck, check
2026-02-27 12:52:04 +00:00
|
|
|
"order": "asc",
|
|
|
|
|
"ignoreCase": true,
|
|
|
|
|
"newlinesBetween": true,
|
2026-03-06 18:43:23 +00:00
|
|
|
"internalPattern": ["@open-pencil/", "@/"],
|
Add oxlint, oxfmt, typescript-go
- oxlint with react, react-hooks, typescript, import, unicorn plugins
- oxfmt (no trailing commas, single quotes, sorted imports)
- tsgo (typescript-go native preview) for fast typechecking
- Fix all lint warnings: non-null assertions, unused expressions, stale closures
- Scripts: lint, format, typecheck, check
2026-02-27 12:52:04 +00:00
|
|
|
"groups": [
|
2026-03-06 18:43:23 +00:00
|
|
|
"builtin",
|
|
|
|
|
"external",
|
Add oxlint, oxfmt, typescript-go
- oxlint with react, react-hooks, typescript, import, unicorn plugins
- oxfmt (no trailing commas, single quotes, sorted imports)
- tsgo (typescript-go native preview) for fast typechecking
- Fix all lint warnings: non-null assertions, unused expressions, stale closures
- Scripts: lint, format, typecheck, check
2026-02-27 12:52:04 +00:00
|
|
|
"internal",
|
|
|
|
|
["parent", "sibling", "index"],
|
|
|
|
|
"type"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|