Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update eslint and eslint-config-cesium #11996

Merged
merged 7 commits into from
May 28, 2024
Prev Previous commit
prettier fix
  • Loading branch information
jjspace committed May 28, 2024
commit 107b00c209817a9d8319f45f91363467e7608dc1
5 changes: 1 addition & 4 deletions .github/actions/check-for-CLA/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,7 @@ const main = async () => {
errorFoundOnCLACheck = error.toString();
}

await postCommentOnPullRequest(
hasSignedCLA,
errorFoundOnCLACheck
);
await postCommentOnPullRequest(hasSignedCLA, errorFoundOnCLACheck);
};

main();
7 changes: 6 additions & 1 deletion packages/engine/Specs/Core/Cartesian3Spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { Cartesian3, Cartographic, Ellipsoid, Math as CesiumMath } from "../../index.js";
import {
Cartesian3,
Cartographic,
Ellipsoid,
Math as CesiumMath,
} from "../../index.js";

import createPackableArraySpecs from "../../../../Specs/createPackableArraySpecs.js";
import createPackableSpecs from "../../../../Specs/createPackableSpecs.js";
Expand Down
7 changes: 6 additions & 1 deletion packages/engine/Specs/Core/CartographicSpec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { Cartesian3, Cartographic, Ellipsoid, Math as CesiumMath } from "../../index.js";
import {
Cartesian3,
Cartographic,
Ellipsoid,
Math as CesiumMath,
} from "../../index.js";

describe("Core/Cartographic", function () {
const surfaceCartesian = new Cartesian3(
Expand Down
7 changes: 6 additions & 1 deletion packages/engine/Specs/Core/CatmullRomSplineSpec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { Cartesian3, CatmullRomSpline, HermiteSpline, Math as CesiumMath } from "../../index.js";
import {
Cartesian3,
CatmullRomSpline,
HermiteSpline,
Math as CesiumMath,
} from "../../index.js";

describe("Core/CatmullRomSpline", function () {
let points;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { I3SBuildingSceneLayerExplorerViewModel, knockout } from "../../index.js";
import {
I3SBuildingSceneLayerExplorerViewModel,
knockout,
} from "../../index.js";

describe("Widgets/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorerViewModel", function () {
const i3sProvider = {
Expand Down