Play with eslint rules

This commit is contained in:
Amanda Bullington
2025-05-19 16:10:11 -07:00
parent 11c35a5533
commit a54d08f8ac
2 changed files with 4 additions and 2 deletions

View File

@@ -53,7 +53,9 @@ module.exports = {
"import/extensions": [2, {
js: "never",
jsx: "never",
json: "always"
json: "always",
ts: "never",
tsx: "never"
}],
indent: ["error", 2, { SwitchCase: 1 }],
"max-len": [

View File

@@ -16,7 +16,7 @@ import MapView, {
} from "react-native-maps";
import Observation from "realmModels/Observation";
import fetchCoarseUserLocation from "sharedHelpers/fetchCoarseUserLocation.ts";
import mapTracker from "sharedHelpers/MapPerformanceTracker.ts";
import mapTracker from "sharedHelpers/mapPerformanceTracker.ts";
import { useDebugMode, useDeviceOrientation } from "sharedHooks";
import useLocationPermission from "sharedHooks/useLocationPermission.tsx";
import colors from "styles/tailwindColors";