Skip to content

Commit

Permalink
Add pragmas for emacs
Browse files Browse the repository at this point in the history
  • Loading branch information
cutsea110 committed Dec 14, 2011
1 parent b1b3f64 commit 4f907ee
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Application.hs
@@ -1,3 +1,5 @@
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses #-}
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -fno-warn-orphans #-} {-# OPTIONS_GHC -fno-warn-orphans #-}
module Application module Application
( withTut ( withTut
Expand Down
3 changes: 3 additions & 0 deletions Foundation.hs
@@ -1,3 +1,6 @@
{-# LANGUAGE TemplateHaskell, QuasiQuotes, TypeFamilies, MultiParamTypeClasses #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
module Foundation module Foundation
( Tut (..) ( Tut (..)
, TutRoute (..) , TutRoute (..)
Expand Down
2 changes: 2 additions & 0 deletions Handler/Root.hs
@@ -1,3 +1,5 @@
{-# LANGUAGE TemplateHaskell, QuasiQuotes #-}
{-# LANGUAGE OverloadedStrings #-}
module Handler.Root where module Handler.Root where


import Import import Import
Expand Down
2 changes: 2 additions & 0 deletions Model.hs
@@ -1,3 +1,5 @@
{-# LANGUAGE TemplateHaskell, QuasiQuotes, TypeFamilies, GADTs #-}
{-# LANGUAGE FlexibleContexts #-}
module Model where module Model where


import Prelude import Prelude
Expand Down
3 changes: 3 additions & 0 deletions Settings.hs
@@ -1,3 +1,6 @@
{-# LANGUAGE TemplateHaskell, QuasiQuotes #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE CPP #-}
-- | Settings are centralized, as much as possible, into this file. This -- | Settings are centralized, as much as possible, into this file. This
-- includes database connection settings, static file locations, etc. -- includes database connection settings, static file locations, etc.
-- In addition, you can configure a number of different aspects of Yesod -- In addition, you can configure a number of different aspects of Yesod
Expand Down
1 change: 1 addition & 0 deletions Settings/StaticFiles.hs
@@ -1,3 +1,4 @@
{-# LANGUAGE TemplateHaskell, QuasiQuotes #-}
module Settings.StaticFiles where module Settings.StaticFiles where


import Yesod.Static (staticFiles, StaticRoute (StaticRoute)) import Yesod.Static (staticFiles, StaticRoute (StaticRoute))
Expand Down

0 comments on commit 4f907ee

Please sign in to comment.