Skip to content

Commit

Permalink
Fix linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsunni committed Aug 12, 2024
1 parent 53531e5 commit d0e5d79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test": "npm run prepare && node -r ./setup-browser-env.cjs --test test.js",
"test:debug": "npm run prepare && npm run test:debug:help && node -r ./setup-browser-env.cjs --inspect-brk --watch --test test.js",
"test:debug:help": "echo '---' && echo 'Debug is reachable in your browser at chrome://inspect' && echo '---'",
"eslint": "eslint src *.js",
"eslint": "eslint src *.js --fix",
"checks": "npm run eslint && npm run typecheck",
"prettier-fix": "prettier -w src *.js",
"prepare": "tsc --pretty && node node_modules/@geoblocks/recast-utils/fix_paths lib",
Expand Down
2 changes: 1 addition & 1 deletion src/VectorEncoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {Constants} from './constants';

import {getFontParameters} from 'ol/css.js';
import {type ColorLike} from 'ol/colorlike';
import { Geometry } from 'ol/geom';
import {Geometry} from 'ol/geom';

/** Represents the different types of printing styles. */
export const PrintStyleType = {
Expand Down

0 comments on commit d0e5d79

Please sign in to comment.