Skip to content

Commit 6a00f8d

Browse files
committed
chore: wip
chore: wip chore: wip
1 parent 110eb18 commit 6a00f8d

File tree

18 files changed

+6549
-23
lines changed

18 files changed

+6549
-23
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: bun install
4545

4646
- name: Lint
47-
run: bunx --bun eslint .
47+
run: bunx --bun eslint --flag unstable_ts_config .
4848

4949
typecheck:
5050
runs-on: ${{ matrix.os }}

bun.lock

Lines changed: 6532 additions & 0 deletions
Large diffs are not rendered by default.

bun.lockb

-911 KB
Binary file not shown.

eslint.config.js renamed to eslint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default stacks({
66

77
// Or customize the stylistic rules
88
stylistic: {
9-
indent: 4, // 4, or 'tab'
9+
indent: 2,
1010
quotes: 'single', // or 'double'
1111
},
1212

storage/framework/core/buddy/src/commands/lint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function lint(buddy: CLI): void {
2424

2525
if (options.fix)
2626
await runAction(Action.LintFix, { ...options })
27-
else await runCommand('bunx --bun eslint .')
27+
else await runCommand('bunx --bun eslint --flag unstable_ts_config .')
2828

2929
await outro('Linted your project', { startTime, useSeconds: true })
3030
})

storage/framework/core/bun-create/bud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"stacks": "workspace:*"
112112
},
113113
"lint-staged": {
114-
"*": "bunx --bun eslint . --fix"
114+
"*": "bunx --bun eslint --flag unstable_ts_config . --fix"
115115
},
116116
"config": {
117117
"commitizen": {

storage/framework/core/bun-create/buddy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"stacks": "workspace:*"
111111
},
112112
"lint-staged": {
113-
"*": "bunx --bun eslint . --fix"
113+
"*": "bunx --bun eslint --flag unstable_ts_config . --fix"
114114
},
115115
"config": {
116116
"commitizen": {

storage/framework/core/bun-create/stack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"stacks": "workspace:*"
111111
},
112112
"lint-staged": {
113-
"*": "bunx --bun eslint . --fix"
113+
"*": "bunx --bun eslint --flag unstable_ts_config . --fix"
114114
},
115115
"config": {
116116
"commitizen": {

storage/framework/core/bun-create/stacks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"stacks": "workspace:*"
111111
},
112112
"lint-staged": {
113-
"*": "bunx --bun eslint . --fix"
113+
"*": "bunx --bun eslint --flag unstable_ts_config . --fix"
114114
},
115115
"config": {
116116
"commitizen": {

storage/framework/core/bun-create/stx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"stacks": "workspace:*"
112112
},
113113
"lint-staged": {
114-
"*": "bunx --bun eslint . --fix"
114+
"*": "bunx --bun eslint --flag unstable_ts_config . --fix"
115115
},
116116
"config": {
117117
"commitizen": {

0 commit comments

Comments
 (0)