Skip to content

Commit 1f64f23

Browse files
committed
add super linter
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent 6a71384 commit 1f64f23

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

.github/workflows/lint-rest.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@ jobs:
1717
- uses: jdx/mise-action@7a111ead46986ccad89a74ad013ba2a7c08c9e67 # v2.1.1
1818
- name: Lint
1919
run: mise run lint-rest
20-

docs/themes/hugo-geekdoc/static/js/662-17acb8f4.chunk.min.js

+8-12
Original file line numberDiff line numberDiff line change
@@ -16639,22 +16639,18 @@
1663916639
v = e.findNearestElement(i[2], i[3], !0, !0);
1664016640
return (
1664116641
f && f.isNode()
16642-
? (f
16643-
.activate()
16644-
.emit({
16642+
? (f.activate().emit({
16643+
originalEvent: t,
16644+
type: "cxttapstart",
16645+
position: { x: i[0], y: i[1] },
16646+
}),
16647+
(e.touchData.start = f))
16648+
: v && v.isNode()
16649+
? (v.activate().emit({
1664516650
originalEvent: t,
1664616651
type: "cxttapstart",
1664716652
position: { x: i[0], y: i[1] },
1664816653
}),
16649-
(e.touchData.start = f))
16650-
: v && v.isNode()
16651-
? (v
16652-
.activate()
16653-
.emit({
16654-
originalEvent: t,
16655-
type: "cxttapstart",
16656-
position: { x: i[0], y: i[1] },
16657-
}),
1665816654
(e.touchData.start = v))
1665916655
: n.emit({
1666016656
originalEvent: t,

simpleclient-archive/simpleclient_servlet_common/src/test/java/io/prometheus/client/servlet/common/exporter/ExporterTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private HttpServletRequestAdapter mockHttpServletRequest(
2727
public String getHeader(String name) {
2828
if (openMetrics && "Accept".equals(name)) {
2929
return "application/openmetrics-text;"
30-
+ " version=0.0.1,text/plain;version=0.0.4;q=0.5,*/*;q=0.1";
30+
+ " version=0.0.1,text/plain;version=0.0.4;q=0.5,*/*;q=0.1";
3131
}
3232
return null;
3333
}

0 commit comments

Comments
 (0)