-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
map, mapClusterer에 useContext 적용 및 hook cycle 로 리팩토링 (#135)
* map, mapClusterer에 useContext 적용 및 hook cycle 로 리팩토링 * fix sidebar, remove log
- Loading branch information
Showing
37 changed files
with
1,493 additions
and
793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react/recommended", | ||
"plugin:react/jsx-runtime", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"plugins": [ | ||
"@stylistic/ts", | ||
"@stylistic/jsx" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"rules": { | ||
"eol-last": "error", | ||
"brace-style": [ | ||
"error", | ||
"1tbs" | ||
], | ||
"@stylistic/jsx/jsx-tag-spacing": [ | ||
"error", | ||
{ | ||
"beforeSelfClosing": "always" | ||
} | ||
], | ||
"no-unused-vars": "off", | ||
"react/prop-types": "off" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.