Commit graph

1619 commits

Author SHA1 Message Date
Eric Nemchik
7b1430c3b7
Merge pull request #552 from github/dependabot/npm_and_yarn/dependencies/dockerfilelint-1.8.0
Bump dockerfilelint from 1.5.0 to 1.8.0 in /dependencies
2020-08-11 08:05:22 -05:00
dependabot[bot]
1818e42fb4
Bump dockerfilelint from 1.5.0 to 1.8.0 in /dependencies
Bumps [dockerfilelint](https://github.com/replicatedhq/dockerfilelint) from 1.5.0 to 1.8.0.
- [Release notes](https://github.com/replicatedhq/dockerfilelint/releases)
- [Changelog](https://github.com/replicatedhq/dockerfilelint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/replicatedhq/dockerfilelint/compare/v1.5.0...v1.8.0)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-11 05:49:00 +00:00
dependabot[bot]
44044c08e5
Bump @typescript-eslint/eslint-plugin in /dependencies
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.8.0 to 3.9.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.9.0/packages/eslint-plugin)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-11 05:47:21 +00:00
dependabot[bot]
c606c52b13
Update actions/checkout requirement to v2.3.2
Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](2036a08e25)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-11 05:43:14 +00:00
Zack Koppert
45bb88402f
Merge pull request #547 from bazzadp/github_token_explanation
Explain GitHub token a bit more
2020-08-10 17:05:51 -07:00
Barry
d03cfd78aa Finish sentence 2020-08-11 00:04:35 +01:00
Barry
fe72e27641 Only run deploy to Docker on original repo and not forks 2020-08-10 23:55:52 +01:00
Barry
44e48abb43 Bit more explanation 2020-08-10 23:41:32 +01:00
Barry
b65cf4a256 More explanation of GITHUB_TOKEN 2020-08-10 23:38:53 +01:00
Lukas Gravley
184fa681e7 Merge pull request #545 from github/ec2
Add missing editorconfig-checker to linter array
2020-08-10 12:07:10 -05:00
Lukas Gravley
cfb9cf66e3
Merge pull request #546 from github/FixMerge
Fixing Actions job name
2020-08-10 12:06:37 -05:00
Eric Nemchik
e72d13da77
Merge pull request #539 from github/dependabot/github_actions/actions/checkout-v2.3.2
Bump actions/checkout from v2.3.1 to v2.3.2
2020-08-10 11:06:00 -05:00
Eric Nemchik
c3853a17e7
Merge pull request #540 from github/dependabot/npm_and_yarn/dependencies/npm-groovy-lint-7.1.0
Bump npm-groovy-lint from 6.1.1 to 7.1.0 in /dependencies
2020-08-10 11:05:35 -05:00
Lucas Gravley
5e7052202c fix name 2020-08-10 10:44:39 -05:00
Eric Nemchik
a4d7e4831a Add missing editorconfig-checker to linter array 2020-08-10 09:45:40 -05:00
dependabot[bot]
76457403db
Bump npm-groovy-lint from 6.1.1 to 7.1.0 in /dependencies
Bumps [npm-groovy-lint](https://github.com/nvuillam/npm-groovy-lint) from 6.1.1 to 7.1.0.
- [Release notes](https://github.com/nvuillam/npm-groovy-lint/releases)
- [Changelog](https://github.com/nvuillam/npm-groovy-lint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nvuillam/npm-groovy-lint/compare/v6.1.1...v7.1.0)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-10 05:41:41 +00:00
dependabot[bot]
6da5e0756a
Bump actions/checkout from v2.3.1 to v2.3.2
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.1 to v2.3.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.1...2036a08e25fa78bbd946711a407b529a0a1204bf)

Signed-off-by: dependabot[bot] <support@github.com>
2020-08-10 05:38:32 +00:00
Eric Nemchik
c4708f8803
Merge pull request #537 from ryanmoran/master
Adds --external-sources option for shellcheck
2020-08-07 14:50:37 -05:00
Ryan Moran
200f699c15 Adds --external-sources option for shellcheck
Shellcheck supports a `--external-sources` option that allows directives
like the follow to pass linting.

  ```
  # shellcheck source=SCRIPTDIR/some/source/script.sh`
  source "$(dirname "${BASH_SOURCE[0]}")/some/source/script.sh"
  ```
Without this option, we will see lots of spurious errors from shellcheck
like the following.

  ```
  # shellcheck source=SCRIPTDIR/some/source/script.sh`
  source "$(dirname "${BASH_SOURCE[0]}")/some/source/script.sh"
         ^-- SC1091: Not following: SCRIPTDIR/some/source/script.sh: openBinaryFile: does not exist (No such file or directory)
  ```

It looks like it [may be
possible](https://github.com/koalaman/shellcheck/issues/1818) to include
this option in a future version of shellcheck through the .shellcheckrc
configuration file, given that this issue is resolved, and that
super-linter supports .shellcheckrc as a configuration file for
shellcheck.
2020-08-07 15:18:40 -04:00
Lukas Gravley
1746012dab
Merge pull request #534 from marghidanu/master
PerlCritic basic implementation
2020-08-07 11:56:09 -05:00
Tudor Marghidanu
8309e9136f Adjusting perl test report 2020-08-07 17:25:00 +02:00
Tudor Marghidanu
a4b7076f30 Updating expected PERL report 2020-08-07 17:15:27 +02:00
Tudor Marghidanu
221f5862c7 Adjusting tests 2020-08-07 17:03:53 +02:00
Lukas Gravley
d082f4f6e4
Merge pull request #529 from github/BetterTests
Adding all codebase scan test
2020-08-07 09:22:17 -05:00
Lucas Gravley
2a162c85ab saved the world 2020-08-07 09:09:40 -05:00
Lucas Gravley
b83490fc43 sudo? 2020-08-07 08:40:27 -05:00
Lukas Gravley
9ea04e4012
Merge pull request #531 from GaboFDC/gf_improve_eslint
Improve eslint
2020-08-07 08:34:13 -05:00
Lukas Gravley
32fd8a4b58
Merge pull request #532 from GaboFDC/gf_allow_markdown_config_file
Allow to set markdownlint config file
2020-08-07 08:32:49 -05:00
Lucas Gravley
8f258a0f8c fix powershell again 2020-08-07 08:23:53 -05:00
Tudor Marghidanu
523b14a2df PerlCritic basic implementation 2020-08-07 14:58:40 +02:00
Gabo
9dc7afd67f Allow to set markdownlint config file 2020-08-07 00:51:59 -05:00
Gabo
a186477c8b Skip node_modules from finds 2020-08-06 19:56:36 -05:00
Gabo
0e03102b3e Add airbnb config, and pretier plugin for eslint 2020-08-06 19:56:21 -05:00
Zack Koppert
4f070b62d7
Merge pull request #528 from github/SQL
Adding SQL-Lint
2020-08-06 17:06:20 -07:00
Lucas Gravley
f88db68011 remove space 2020-08-06 15:07:34 -05:00
Lucas Gravley
33f020ae4d fix powershell 2020-08-06 15:01:51 -05:00
Lucas Gravley
4241daf621 fixed bad var 2020-08-06 14:31:58 -05:00
Lucas Gravley
a6fc5ea2f0 typo 2020-08-06 13:55:44 -05:00
Lucas Gravley
c73d5c27e5 now with vars 2020-08-06 13:46:31 -05:00
Lucas Gravley
4f7a869dc7 source it 2020-08-06 13:32:23 -05:00
Lucas Gravley
b601d7057b mapfile 2020-08-06 13:22:34 -05:00
Lucas Gravley
6701372154 so dank 2020-08-06 13:16:23 -05:00
Lucas Gravley
c9ef1fcb66 Saving it 2020-08-06 12:01:36 -05:00
Lucas Gravley
e3cd76f9df Adding it 2020-08-06 11:58:26 -05:00
Lukas Gravley
fc9654924f
Merge pull request #526 from github/fix-editorconfig
Editorconfig error reporting fix
2020-08-06 11:27:47 -05:00
Lukas Gravley
b76da563c6
Merge pull request #527 from github/SupportAllYaml
Supporting yml and yaml file names
2020-08-06 11:26:52 -05:00
Lukas Gravley
af7c3071d3
Update disabling-linters.md 2020-08-06 11:14:01 -05:00
Lucas Gravley
5ffa5518db fixed it real good 2020-08-06 10:56:06 -05:00
Lucas Gravley
f5532f9cd6 put them back lol 2020-08-06 10:53:42 -05:00
Lucas Gravley
2beb30e939 cleanup 2020-08-06 10:42:57 -05:00