Skip to content

Commit f60f7e1

Browse files
committed
Run Biome.js, configure lineWidth to 160 for src/Map/**/*map_controllers.ts
1 parent d64a8cd commit f60f7e1

File tree

25 files changed

+1028
-1129
lines changed

25 files changed

+1028
-1129
lines changed

biome.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"!**/vendor",
1212
"!**/package.json",
1313
"!**/node_modules",
14-
"!**/var"
14+
"!**/var",
15+
"!**/dist"
1516
]
1617
},
1718
"linter": {
@@ -63,6 +64,12 @@
6364
}
6465
}
6566
}
67+
},
68+
{
69+
"includes": ["src/Map/**/*map_controller.ts"],
70+
"formatter": {
71+
"lineWidth": 160
72+
}
6673
}
6774
]
6875
}

src/Cropperjs/assets/src/controller.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import { Controller } from '@hotwired/stimulus';
1111
import Cropper from 'cropperjs';
12+
1213
import CropEvent = Cropper.CropEvent;
1314

1415
export default class CropperController extends Controller {

src/Dropzone/assets/src/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
}
6161

6262
.dropzone-preview-button::before {
63-
content: '×';
63+
content: "×";
6464
padding: 3px 7px;
6565
cursor: pointer;
6666
}

src/LiveComponent/assets/dist/Component/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { BackendInterface } from '../Backend/Backend';
22
import type BackendRequest from '../Backend/BackendRequest';
33
import BackendResponse from '../Backend/BackendResponse';
44
import type { ElementDriver } from './ElementDriver';
5-
import ValueStore from './ValueStore';
65
import type { PluginInterface } from './plugins/PluginInterface';
6+
import ValueStore from './ValueStore';
77
type MaybePromise<T = void> = T | Promise<T>;
88
export type ComponentHooks = {
99
connect: (component: Component) => MaybePromise;

0 commit comments

Comments
 (0)