mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 13:41:19 -05:00
Update additional scala extensions (#2296)
* Update buildFileList.sh add new extension * fix space * turn this down a hair * update * fix rule * fixed dumb stuff * fix indent * hangry
This commit is contained in:
parent
be2b62efe9
commit
42981a4a7a
14 changed files with 72 additions and 68 deletions
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
#################################
|
||||
# GitHub Dependabot Config info #
|
||||
#################################
|
||||
|
@ -36,4 +37,3 @@ updates:
|
|||
schedule:
|
||||
interval: "weekly"
|
||||
open-pull-requests-limit: 10
|
||||
|
||||
|
|
1
.github/linters/.cfnlintrc.yml
vendored
1
.github/linters/.cfnlintrc.yml
vendored
|
@ -1,2 +1,3 @@
|
|||
---
|
||||
include_checks:
|
||||
- I
|
||||
|
|
15
.github/linters/.eslintrc.yml
vendored
15
.github/linters/.eslintrc.yml
vendored
|
@ -1,5 +1,4 @@
|
|||
---
|
||||
|
||||
#############################
|
||||
#############################
|
||||
## JavaScript Linter rules ##
|
||||
|
@ -38,15 +37,15 @@ plugins:
|
|||
#########
|
||||
# Rules #
|
||||
#########
|
||||
rules: {}
|
||||
# rules:
|
||||
|
||||
##############################
|
||||
# Overrides for JSON parsing #
|
||||
##############################
|
||||
overrides:
|
||||
|
||||
# JSON files
|
||||
- files:
|
||||
# JSON files
|
||||
- files:
|
||||
- "*.json"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-json
|
||||
|
@ -54,8 +53,8 @@ overrides:
|
|||
parserOptions:
|
||||
jsonSyntax: JSON
|
||||
|
||||
# JSONC files
|
||||
- files:
|
||||
# JSONC files
|
||||
- files:
|
||||
- "*.jsonc"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-jsonc
|
||||
|
@ -63,8 +62,8 @@ overrides:
|
|||
parserOptions:
|
||||
jsonSyntax: JSONC
|
||||
|
||||
# JSON5 files
|
||||
- files:
|
||||
# JSON5 files
|
||||
- files:
|
||||
- "*.json5"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-json5
|
||||
|
|
7
.github/linters/.golangci.yml
vendored
7
.github/linters/.golangci.yml
vendored
|
@ -5,8 +5,8 @@
|
|||
#########################
|
||||
#########################
|
||||
|
||||
# configure golangci-lint
|
||||
# see https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml
|
||||
#configure golangci-lint
|
||||
#See https://github.com/golangci/golangci-lint/blob/master/.golangci.example.yml
|
||||
issues:
|
||||
exclude-rules:
|
||||
- path: _test\.go
|
||||
|
@ -26,7 +26,8 @@ linters:
|
|||
- revive
|
||||
linters-settings:
|
||||
errcheck:
|
||||
# report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
|
||||
# report about assignment of errors to blank
|
||||
# identifier: `num, _ := strconv.Atoi(numStr)`;
|
||||
# default is false: such cases aren't reported by default.
|
||||
check-blank: true
|
||||
govet:
|
||||
|
|
1
.github/linters/.protolintrc.yml
vendored
1
.github/linters/.protolintrc.yml
vendored
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
# Lint directives.
|
||||
lint:
|
||||
# Linter rules.
|
||||
|
|
2
.github/linters/.yaml-lint.yml
vendored
2
.github/linters/.yaml-lint.yml
vendored
|
@ -50,7 +50,7 @@ rules:
|
|||
key-duplicates: enable
|
||||
line-length:
|
||||
level: warning
|
||||
max: 80
|
||||
max: 600
|
||||
allow-non-breakable-words: true
|
||||
allow-non-breakable-inline-mappings: true
|
||||
new-line-at-end-of-file: disable
|
||||
|
|
2
.github/release-drafter.yml
vendored
2
.github/release-drafter.yml
vendored
|
@ -1,3 +1,5 @@
|
|||
---
|
||||
# yamllint disable rule:line-length
|
||||
name-template: 'v$RESOLVED_VERSION'
|
||||
tag-template: 'v$RESOLVED_VERSION'
|
||||
template: |
|
||||
|
|
4
.github/workflows/stack-linter.yml
vendored
4
.github/workflows/stack-linter.yml
vendored
|
@ -14,10 +14,8 @@
|
|||
# Start the job on all push #
|
||||
#############################
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches-ignore: []
|
||||
|
||||
|
||||
###############
|
||||
# Set the Job #
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
---
|
||||
include_checks:
|
||||
- I
|
||||
- I
|
||||
|
|
|
@ -38,15 +38,15 @@ plugins:
|
|||
#########
|
||||
# Rules #
|
||||
#########
|
||||
rules: {}
|
||||
# rules: {}
|
||||
|
||||
##############################
|
||||
# Overrides for JSON parsing #
|
||||
##############################
|
||||
overrides:
|
||||
|
||||
# JSON files
|
||||
- files:
|
||||
# JSON files
|
||||
- files:
|
||||
- "*.json"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-json
|
||||
|
@ -54,8 +54,8 @@ overrides:
|
|||
parserOptions:
|
||||
jsonSyntax: JSON
|
||||
|
||||
# JSONC files
|
||||
- files:
|
||||
# JSONC files
|
||||
- files:
|
||||
- "*.jsonc"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-jsonc
|
||||
|
@ -63,8 +63,8 @@ overrides:
|
|||
parserOptions:
|
||||
jsonSyntax: JSONC
|
||||
|
||||
# JSON5 files
|
||||
- files:
|
||||
# JSON5 files
|
||||
- files:
|
||||
- "*.json5"
|
||||
extends:
|
||||
- plugin:jsonc/recommended-with-json5
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
# Lint directives.
|
||||
lint:
|
||||
# Linter rules.
|
||||
|
|
|
@ -698,7 +698,7 @@ function BuildFileList() {
|
|||
###########################
|
||||
# Get the SCALA files #
|
||||
###########################
|
||||
elif [ "${FILE_TYPE}" == "scala" ] || [ "${BASE_FILE}" == "??????" ]; then
|
||||
elif [ "${FILE_TYPE}" == "scala" ] || [ "${FILE_TYPE}" == "sc" ] || [ "${BASE_FILE}" == "??????" ]; then
|
||||
################################
|
||||
# Append the file to the array #
|
||||
################################
|
||||
|
|
Loading…
Reference in a new issue