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.
1 ===============================================================================
2 ALE PowerShell Integration *ale-powershell-options*
5 ===============================================================================
6 cspell *ale-powershell-cspell*
8 See |ale-cspell-options|
11 ===============================================================================
12 powershell *ale-powershell-powershell*
14 *ale-options.powershell_powershell_executable*
15 *g:ale_powershell_powershell_executable*
16 *b:ale_powershell_powershell_executable*
17 powershell_powershell_executable
18 g:ale_powershell_powershell_executable
22 This variable can be changed to use a different executable for powershell.
25 " Use powershell.exe rather than the default pwsh
26 let g:ale_powershell_powershell_executable = 'powershell.exe'
29 ===============================================================================
30 psscriptanalyzer *ale-powershell-psscriptanalyzer*
33 -------------------------------------------------------------------------------
36 Install PSScriptAnalyzer by any means, so long as it can be automatically
37 imported in PowerShell.
40 -------------------------------------------------------------------------------
42 *ale-options.powershell_psscriptanalyzer_executable*
43 *g:ale_powershell_psscriptanalyzer_executable*
44 *b:ale_powershell_psscriptanalyzer_executable*
45 powershell_psscriptanalyzer_executable
46 g:ale_powershell_psscriptanalyzer_executable
50 This variable sets executable used for powershell.
52 For example, on Windows you could set powershell to be Windows Powershell:
54 let g:ale_powershell_psscriptanalyzer_executable = 'powershell.exe'
57 *ale-options.powershell_psscriptanalyzer_module*
58 *g:ale_powershell_psscriptanalyzer_module*
59 *b:ale_powershell_psscriptanalyzer_module*
60 powershell_psscriptanalyzer_module
61 g:ale_powershell_psscriptanalyzer_module
63 Default: `'psscriptanalyzer'`
65 This variable sets the name of the psscriptanalyzer module.
66 for psscriptanalyzer invocation.
68 *ale-options.powershell_psscriptanalyzer_exclusions*
69 *g:ale_powershell_psscriptanalyzer_exclusions*
70 *b:ale_powershell_psscriptanalyzer_exclusions*
71 powershell_psscriptanalyzer_exclusions
72 g:ale_powershell_psscriptanalyzer_exclusions
76 Set this variable to exclude test(s) for psscriptanalyzer
77 (-ExcludeRule option). To exclude more than one option, separate them with
80 " Suppress Write-Host and Global vars warnings
81 let g:ale_powershell_psscriptanalyzer_exclusions =
82 \ 'PSAvoidUsingWriteHost,PSAvoidGlobalVars'
85 ===============================================================================
86 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: