Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Nov 29, 2024
1 parent 78c8d70 commit 1043a1d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 243 deletions.
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default tsEslint.config(
},
{
ignores: [
'!.storybook',
'.firebase',
'.github/*',
'.vscode/*',
Expand Down
246 changes: 6 additions & 240 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-storybook": "^0.9.0--canary.156.ed236ca.0",
"eslint-plugin-storybook": "^0.10.1",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
Expand Down
4 changes: 2 additions & 2 deletions src/components/filters/Location.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ export default function Location(): JSX.Element {
const streamsProvider = featureServiceProvider(
config.urls.streams,
config.fieldNames.WaterName,
// @ts-ignore
// @ts-expect-error - need to update the type for featureServiceProvider
config.fieldNames.COUNTY,
kyOptions,
);
const lakesProvider = featureServiceProvider(
config.urls.lakes,
config.fieldNames.WaterName,
// @ts-ignore
// @ts-expect-error - need to update the type for featureServiceProvider
config.fieldNames.COUNTY,
kyOptions,
);
Expand Down

0 comments on commit 1043a1d

Please sign in to comment.