chore: enable GHC NumericUnderscores language extension

The `_` character between numeric literals improve their readablity.

Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
This commit is contained in:
Taimoor Zaeem
2026-06-28 01:01:12 +05:00
parent 84e2a0c829
commit 18646a6c03
7 changed files with 9 additions and 6 deletions
+3
View File
@@ -41,6 +41,7 @@ library
default-language: Haskell2010
default-extensions: OverloadedStrings
NoImplicitPrelude
NumericUnderscores
hs-source-dirs: src
exposed-modules: PostgREST.Admin
PostgREST.App
@@ -218,6 +219,7 @@ test-suite spec
default-extensions: OverloadedStrings
QuasiQuotes
NoImplicitPrelude
NumericUnderscores
hs-source-dirs: test/spec
main-is: Main.hs
other-modules: Feature.Auth.AsymmetricJwtSpec
@@ -317,6 +319,7 @@ test-suite observability
default-extensions: OverloadedStrings
QuasiQuotes
NoImplicitPrelude
NumericUnderscores
hs-source-dirs: test/observability
main-is: Main.hs
other-modules: ObsHelper