-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
4,776 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"type": "application", | ||
"source-directories": [ | ||
"src" | ||
], | ||
"elm-version": "0.19.1", | ||
"dependencies": { | ||
"direct": { | ||
"elm/core": "1.0.5", | ||
"jfmengels/elm-review": "2.14.1", | ||
"stil4m/elm-syntax": "7.3.8", | ||
"perkee/elm-review-prefer-html-extra": "1.0.0" | ||
}, | ||
"indirect": { | ||
"elm/bytes": "1.0.8", | ||
"elm/html": "1.0.0", | ||
"elm/json": "1.1.3", | ||
"elm/parser": "1.1.0", | ||
"elm/project-metadata-utils": "1.0.2", | ||
"elm/random": "1.0.0", | ||
"elm/regex": "1.0.0", | ||
"elm/time": "1.0.0", | ||
"elm/virtual-dom": "1.0.3", | ||
"elm-explorations/test": "2.2.0", | ||
"rtfeldman/elm-hex": "1.0.0", | ||
"stil4m/structured-writer": "1.0.3" | ||
} | ||
}, | ||
"test-dependencies": { | ||
"direct": { | ||
"elm-explorations/test": "2.2.0" | ||
}, | ||
"indirect": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
module ReviewConfig exposing (config) | ||
|
||
{-| Do not rename the ReviewConfig module or the config function, because | ||
`elm-review` will look for these. | ||
To add packages that contain rules, add them to this review project using | ||
`elm install author/packagename` | ||
when inside the directory containing this file. | ||
-} | ||
|
||
import UseHtmlExtraNothing | ||
import Review.Rule exposing (Rule) | ||
|
||
|
||
config : List Rule | ||
config = | ||
[ UseHtmlExtraNothing.rule | ||
] |
Oops, something went wrong.