mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-24 07:33:38 +03:00
36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"version": "1.0.0",
|
|
"summary": "A linter for Elm. Get your code from correct to better.",
|
|
"repository": "https://github.com/jfmengels/elm-lint.git",
|
|
"license": "BSD3",
|
|
"source-directories": [
|
|
"src"
|
|
],
|
|
"exposed-modules": [
|
|
"Lint",
|
|
"Lint.Types",
|
|
"Lint.Rules.DefaultPatternPosition",
|
|
"Lint.Rules.NoConstantCondition",
|
|
"Lint.Rules.NoDebug",
|
|
"Lint.Rules.NoDuplicateImports",
|
|
"Lint.Rules.NoExposingEverything",
|
|
"Lint.Rules.NoImportingEverything",
|
|
"Lint.Rules.NoNestedLet",
|
|
"Lint.Rules.NoUnannotatedFunction",
|
|
"Lint.Rules.NoUnusedVariables",
|
|
"Lint.Rules.NoUselessIf",
|
|
"Lint.Rules.NoUselessPatternMatching",
|
|
"Lint.Rules.NoWarningComments",
|
|
"Lint.Rules.SimplifyPiping",
|
|
"Lint.Rules.SimplifyPropertyAccess"
|
|
],
|
|
"dependencies": {
|
|
"Bogdanp/elm-ast": "8.0.3 <= v < 9.0.0",
|
|
"elm-community/list-extra": "5.0.1 <= v < 6.0.0",
|
|
"elm-community/parser-combinators": "1.1.0 <= v < 2.0.0",
|
|
"elm-lang/core": "5.0.0 <= v < 6.0.0",
|
|
"elm-lang/html": "2.0.0 <= v < 3.0.0"
|
|
},
|
|
"elm-version": "0.18.0 <= v < 0.19.0"
|
|
}
|