All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 runtime ale_linters/powershell/psscriptanalyzer.vim
5 call ale#linter#Reset()
7 Execute(The psscriptanalyzer handler should handle basic information or warnings):
13 \ 'text': 'The cmdlet ''Get-GithubRepo'' does not have a help comment.',
14 \ 'code': 'PSProvideCommentHelp',
19 \ 'text': '''%'' is an alias of ''ForEach-Object''. Alias can introduce possible problems and make scripts hard to maintain. Please consider changing alias to its full content.',
20 \ 'code': 'PSAvoidUsingCmdletAliases',
25 \ 'text': 'The ComputerName parameter of a cmdlet should not be hardcoded as this will expose sensitive information about the system.',
26 \ 'code': 'PSAvoidUsingComputerNameHardcoded',
29 \ ale_linters#powershell#psscriptanalyzer#Handle(bufnr(''), [
32 \ 'The cmdlet ''Get-GithubRepo'' does not have a help comment.',
33 \ 'PSProvideCommentHelp',
36 \ '''%'' is an alias of ''ForEach-Object''. Alias can introduce possible problems and make scripts hard to maintain. Please consider changing alias to its full content.',
37 \ 'PSAvoidUsingCmdletAliases',
40 \ 'The ComputerName parameter of a cmdlet should not be hardcoded as this will expose sensitive information about the system.',
41 \ 'PSAvoidUsingComputerNameHardcoded',