mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-23 09:10:59 -05:00
Fix editorconfig-checker errors
This commit is contained in:
parent
45aa47465a
commit
7862654394
22 changed files with 79 additions and 69 deletions
16
.github/ISSUE_TEMPLATE/ENHANCEMENT-REQUEST.md
vendored
16
.github/ISSUE_TEMPLATE/ENHANCEMENT-REQUEST.md
vendored
|
@ -14,18 +14,18 @@ about: Used for requesting enhancements to the GitHub Super-Linter
|
||||||
|
|
||||||
**Your impression of priority / how important this request is**
|
**Your impression of priority / how important this request is**
|
||||||
|
|
||||||
- [ ] Critical: Can't use the tool without it.
|
- [ ] Critical: Can't use the tool without it.
|
||||||
- [ ] Business Critical: Immediate opportunity to win business with this feature
|
- [ ] Business Critical: Immediate opportunity to win business with this feature
|
||||||
- [ ] Important: Will significantly enhance the overall utility of the demo
|
- [ ] Important: Will significantly enhance the overall utility of the demo
|
||||||
- [ ] Nice to have: self-explanatory
|
- [ ] Nice to have: self-explanatory
|
||||||
|
|
||||||
**Business case or other information justifying priority**
|
**Business case or other information justifying priority**
|
||||||
|
|
||||||
**Agreed upon priority**
|
**Agreed upon priority**
|
||||||
- [ ] Critical: Can't use the tool without it.
|
- [ ] Critical: Can't use the tool without it.
|
||||||
- [ ] Business Critical: Immediate opportunity to win business with this feature
|
- [ ] Business Critical: Immediate opportunity to win business with this feature
|
||||||
- [ ] Important: Will significantly enhance the overall utility of the demo
|
- [ ] Important: Will significantly enhance the overall utility of the demo
|
||||||
- [ ] Nice to have: self-explanatory
|
- [ ] Nice to have: self-explanatory
|
||||||
|
|
||||||
**Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
|
**Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
|
||||||
<!-- markdownlint-restore -->
|
<!-- markdownlint-restore -->
|
||||||
|
|
2
.github/linters/.cfnlintrc.yml
vendored
2
.github/linters/.cfnlintrc.yml
vendored
|
@ -1,2 +1,2 @@
|
||||||
include_checks:
|
include_checks:
|
||||||
- I
|
- I
|
||||||
|
|
9
.github/linters/.clj-kondo/config.edn
vendored
9
.github/linters/.clj-kondo/config.edn
vendored
|
@ -1,2 +1,7 @@
|
||||||
{:linters {:unresolved-symbol {:exclude [(compojure.api.sweet/defroutes)]}
|
{:linters
|
||||||
:refer-all {:exclude [clj-time.jdbc]}}}
|
{:unresolved-symbol
|
||||||
|
{:exclude [(compojure.api.sweet/defroutes)]}
|
||||||
|
:refer-all
|
||||||
|
{:exclude [clj-time.jdbc]}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
3
.github/linters/.python-lint
vendored
3
.github/linters/.python-lint
vendored
|
@ -418,8 +418,7 @@ max-module-lines=1000
|
||||||
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
|
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
|
||||||
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
|
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
|
||||||
# `empty-line` allows space-only lines.
|
# `empty-line` allows space-only lines.
|
||||||
no-space-check=trailing-comma,
|
no-space-check=trailing-comma,dict-separator
|
||||||
dict-separator
|
|
||||||
|
|
||||||
# Allow the body of a class to be on the same line as the declaration if body
|
# Allow the body of a class to be on the same line as the declaration if body
|
||||||
# contains single statement.
|
# contains single statement.
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
{:linters {:unresolved-symbol {:exclude [(compojure.api.sweet/defroutes)]}
|
{:linters
|
||||||
:refer-all {:exclude [clj-time.jdbc]}}}
|
{:unresolved-symbol
|
||||||
|
{:exclude [(compojure.api.sweet/defroutes)]}
|
||||||
|
:refer-all
|
||||||
|
{:exclude [clj-time.jdbc]}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -419,8 +419,7 @@ max-module-lines=1000
|
||||||
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
|
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
|
||||||
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
|
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
|
||||||
# `empty-line` allows space-only lines.
|
# `empty-line` allows space-only lines.
|
||||||
no-space-check=trailing-comma,
|
no-space-check=trailing-comma,dict-separator
|
||||||
dict-separator
|
|
||||||
|
|
||||||
# Allow the body of a class to be on the same line as the declaration if body
|
# Allow the body of a class to be on the same line as the declaration if body
|
||||||
# contains single statement.
|
# contains single statement.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# editorconfig-checker-disable
|
||||||
cat << EOF
|
cat << EOF
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -20,3 +21,4 @@ cat << EOF
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
EOF
|
EOF
|
||||||
|
# editorconfig-checker-enable
|
||||||
|
|
Loading…
Reference in a new issue