mirror of
https://github.com/github/semantic.git
synced 2024-12-03 22:54:16 +03:00
26 lines
588 B
Python
26 lines
588 B
Python
# This file lets us share warnings and such across the project
|
|
|
|
STANDARD_GHC_WARNINGS = [
|
|
"-O0",
|
|
"-v1",
|
|
"-j8",
|
|
"-fdiagnostics-color=always",
|
|
"-ferror-spans",
|
|
"-Weverything",
|
|
"-Wno-missing-local-signatures",
|
|
"-Wno-missing-import-lists",
|
|
"-Wno-implicit-prelude",
|
|
"-Wno-safe",
|
|
"-Wno-unsafe",
|
|
"-Wno-name-shadowing",
|
|
"-Wno-monomorphism-restriction",
|
|
"-Wno-missed-specialisations",
|
|
"-Wno-all-missed-specialisations",
|
|
"-Wno-star-is-type",
|
|
"-Wno-missing-deriving-strategies",
|
|
]
|
|
|
|
STANDARD_EXECUTABLE_FLAGS = [
|
|
"-threaded",
|
|
]
|