1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 13:02:37 +03:00

Clean up language pragmas

This commit is contained in:
Patrick Thomson 2019-08-16 14:55:03 -04:00
parent 909139e552
commit 655fdbf3f3
5 changed files with 17 additions and 8 deletions

View File

@ -20,6 +20,20 @@ tested-with: GHC == 8.6.4
common haskell
default-language: Haskell2010
default-extensions: DataKinds
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveTraversable
, FlexibleContexts
, FlexibleInstances
, MonadFailDesugaring
, MultiParamTypeClasses
, OverloadedStrings
, RecordWildCards
, StandaloneDeriving
, StrictData
, TypeApplications
build-depends: fused-effects ^>= 0.5.0.0
, base ^>=4.12.0.0
, semantic-core ^>= 0.0.0.0

View File

@ -1,5 +1,4 @@
{-# LANGUAGE DefaultSignatures, DeriveGeneric, FlexibleContexts, FlexibleInstances, RecordWildCards, StandaloneDeriving,
TypeApplications, TypeOperators, ScopedTypeVariables, PartialTypeSignatures, OverloadedStrings #-}
{-# LANGUAGE DefaultSignatures, OverloadedStrings, ScopedTypeVariables, TypeOperators #-}
module Language.Python.Core
( compile
) where

View File

@ -1,5 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
module Directive ( Directive (..)
, parseDirective
, toProcess

View File

@ -1,4 +1,4 @@
{-# LANGUAGE OverloadedStrings, RecordWildCards, TypeOperators #-}
{-# LANGUAGE TypeOperators #-}
module ScopeDump ( ScopeDump (..), runScopeDump ) where

View File

@ -1,6 +1,4 @@
{-# OPTIONS_GHC -Werror #-}
{-# LANGUAGE FlexibleContexts, FlexibleInstances, OverloadedStrings, RecordWildCards, TypeApplications,
TypeOperators #-}
{-# LANGUAGE TypeOperators #-}
module Main (main) where