summaryrefslogtreecommitdiff
path: root/web/src/hooks/Configuration.ts
diff options
context:
space:
mode:
authorAmir Zarrinkafsh <nightah@me.com>2021-01-02 21:58:24 +1100
committerGitHub <noreply@github.com>2021-01-02 21:58:24 +1100
commit689fd7cb954afd5eaeab49e122cdd2ee86bc6c82 (patch)
tree39ecf8710d9758edc2eb87882cadabe870ab9d1e /web/src/hooks/Configuration.ts
parenta5ea31e482df16acda15b77b3a7db24a2a5b7be7 (diff)
[CI] Add linting option for frontend and enforce styling (#1565)
We now extend the default Eslint configuration and enforce styling with prettier for all of our frontend code.
Diffstat (limited to 'web/src/hooks/Configuration.ts')
-rw-r--r--web/src/hooks/Configuration.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/hooks/Configuration.ts b/web/src/hooks/Configuration.ts
index 921532b3b..bc3f6a3ec 100644
--- a/web/src/hooks/Configuration.ts
+++ b/web/src/hooks/Configuration.ts
@@ -1,6 +1,6 @@
-import { useRemoteCall } from "./RemoteCall";
import { getConfiguration } from "../services/Configuration";
+import { useRemoteCall } from "./RemoteCall";
export function useConfiguration() {
return useRemoteCall(getConfiguration, []);
-} \ No newline at end of file
+}