1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 00:12:29 +03:00

lint semantic-python

This commit is contained in:
Patrick Thomson 2019-10-21 14:09:20 -04:00
parent 2d4f4cb64a
commit 386e8317dc
3 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ script:
# parse-examples is disabled because it slaughters our CI
# - cabal new-run semantic:parse-examples
# Downloads an hlint binary rather than going through cabal-install
- curl -sSL https://raw.github.com/ndmitchell/hlint/master/misc/run.sh | sh -s src
- curl -sSL https://raw.github.com/ndmitchell/hlint/master/misc/run.sh | sh -s src semantic-python
# Any branch linked with a pull request will be built, as well as the non-PR
# branches listed below:

View File

@ -7,8 +7,8 @@ module Directive ( Directive (..)
import Control.Applicative
import Control.Monad
import Core.Core (Core)
import qualified Core.Parser as Core.Parser
import qualified Core.Pretty as Core.Pretty
import qualified Core.Parser
import qualified Core.Pretty
import Core.Name (Name)
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as ByteString

View File

@ -1,4 +1,4 @@
{-# LANGUAGE DeriveAnyClass, DerivingStrategies, GeneralizedNewtypeDeriving, LambdaCase, StandaloneDeriving, FlexibleInstances, NamedFieldPuns, OverloadedStrings, QuantifiedConstraints, TypeOperators, UndecidableInstances, TypeApplications #-}
{-# LANGUAGE DerivingStrategies, GeneralizedNewtypeDeriving, LambdaCase, StandaloneDeriving, FlexibleInstances, NamedFieldPuns, OverloadedStrings, QuantifiedConstraints, TypeOperators, UndecidableInstances, TypeApplications #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Instances () where