diff --git a/.gitignore b/.gitignore index f73dec25..a96913cc 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,9 @@ package-lock.json Podfile.lock Package.resolved .env -test.sh \ No newline at end of file +bin +.settings +.classpath +.project +test.sh +.idea \ No newline at end of file diff --git a/package.json b/package.json index 6bd1111b..ba5996aa 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,9 @@ "node": ">=20", "pnpm": ">=8" }, - "dependencies": {}, + "dependencies": { + "eslint": "^8.57.0" + }, "workspaces": [ "plugin" ] diff --git a/plugin/src/index.ts b/plugin/src/index.ts index 1900cdad..c1737892 100644 --- a/plugin/src/index.ts +++ b/plugin/src/index.ts @@ -1,4 +1,5 @@ /* eslint-disable @typescript-eslint/no-namespace */ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { LatLngBounds, MapType, Marker, Polygon, Circle, Polyline, StyleSpan } from './definitions'; import { GoogleMap } from './map'; diff --git a/plugin/src/map.ts b/plugin/src/map.ts index 977c032c..0c848e9d 100644 --- a/plugin/src/map.ts +++ b/plugin/src/map.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { Capacitor } from '@capacitor/core'; import type { PluginListenerHandle } from '@capacitor/core'; diff --git a/plugin/src/web.ts b/plugin/src/web.ts index 87cea938..e338743f 100644 --- a/plugin/src/web.ts +++ b/plugin/src/web.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ import { WebPlugin } from '@capacitor/core'; import type { Cluster, onClusterClickHandler } from '@googlemaps/markerclusterer'; import { MarkerClusterer, SuperClusterAlgorithm } from '@googlemaps/markerclusterer';