-
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.
chore: setup more relaxed linter rules
- Loading branch information
1 parent
574f896
commit 78b0cfe
Showing
4 changed files
with
127 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"MD004": { | ||
"style": "dash" | ||
}, | ||
"MD012": false, | ||
"MD013": false, | ||
"MD036": false, | ||
"MD046": false, | ||
"MD024": { | ||
"siblings_only": true | ||
} | ||
} |
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,12 @@ | ||
extends: default | ||
|
||
# Ignore helm templates and .terraform provider paths | ||
ignore: | | ||
.terraform/ | ||
tmp/ | ||
rules: | ||
line-length: disable | ||
document-start: disable | ||
comments: disable | ||
truthy: disable # github workflows uses "on:" a lot, which is a truthy value in yaml |
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,96 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Config", | ||
"type": "object", | ||
"properties": { | ||
"allowBroken": { | ||
"type": "boolean" | ||
}, | ||
"allowUnfree": { | ||
"type": "boolean" | ||
}, | ||
"clean": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/definitions/Clean" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"imports": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"impure": { | ||
"type": "boolean" | ||
}, | ||
"inputs": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/Input" | ||
} | ||
}, | ||
"permittedInsecurePackages": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"definitions": { | ||
"Clean": { | ||
"type": "object", | ||
"required": [ | ||
"enabled", | ||
"keep" | ||
], | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"keep": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"Input": { | ||
"type": "object", | ||
"properties": { | ||
"flake": { | ||
"type": "boolean" | ||
}, | ||
"follows": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"inputs": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"$ref": "#/definitions/Input" | ||
} | ||
}, | ||
"overlays": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"url": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |