packages feed

fix-whitespace-0.0.6: fix-whitespace.cabal

name:            fix-whitespace
version:         0.0.6
cabal-version:   >= 1.10
build-type:      Simple
description:     Removes trailing whitespace, lines containing only whitespace and ensure that every file ends in a newline character.
license:         OtherLicense
license-file:    LICENSE
author:          fix-whitespace was originally written by Nils Anders Danielsson as part of Agda 2 with contributions from Ulf Norell, Andrés Sicard-Ramírez, Andreas Abel, Philipp Hausmann, Jesper Cockx, Vlad Semenov, and Liang-Ting Chen.
homepage:        https://github.com/agda/fix-whitespace
bug-reports:     https://github.com/agda/fix-whitespace/issues
maintainer:      Liang-Ting Chen <liang.ting.chen.tw@gmail.com>
Category:        Text
Synopsis:        Fixes whitespace issues.
tested-with:     GHC == 8.0.2
                 GHC == 8.2.2
                 GHC == 8.4.4
                 GHC == 8.6.5
                 GHC == 8.8.3
                 GHC == 8.8.4
                 GHC == 8.10.3
                 GHC == 8.10.4
                 GHC == 8.10.5
                 GHC == 9.0.1

extra-source-files:
  CHANGELOG.md
  README.md
  fix-whitespace.yaml
  stack-8.0.2.yaml
  stack-8.2.2.yaml
  stack-8.4.4.yaml
  stack-8.6.5.yaml
  stack-8.8.3.yaml
  stack-8.8.4.yaml
  stack-8.10.3.yaml
  stack-8.10.4.yaml
  stack-8.10.5.yaml
  stack-9.0.1.yaml

source-repository head
  type: git
  location: https://github.com/agda/fix-whitespace.git

executable fix-whitespace
  hs-source-dirs:   .
  main-is:          FixWhitespace.hs
  other-modules:    ParseConfig
  default-language: Haskell2010

  build-depends:  base         >= 4.9.0.0  &&  < 4.16
                , directory    >= 1.2.6.2  &&  < 1.4
                , extra        >= 1.1      &&  < 2.0
                , filepath     >= 1.4.1.0  &&  < 1.5
                , filepattern  >= 0.1.2    &&  < 0.1.3
                , text         >= 1.2.3.0  &&  < 1.3
                , yaml         >= 0.8.4    &&  < 0.12

  -- ASR (2018-10-16).
  -- text-1.2.3.0 required for supporting GHC 8.4.1, 8.4.2 and
  -- 8.4.3. See Issue #3277.
  -- The other GHC versions can restrict to >= 1.2.3.1.
  if impl(ghc < 8.4.1) || impl(ghc > 8.4.3)
    build-depends: text >= 1.2.3.1

  ghc-options:
    -Wall
    -Wcompat