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 Dockerfile Integration *ale-dockerfile-options*
5 ===============================================================================
6 dockerfile_lint *ale-dockerfile-dockerfile_lint*
8 *ale-options.dockerfile_dockerfile_lint_executable*
9 *g:ale_dockerfile_dockerfile_lint_executable*
10 *b:ale_dockerfile_dockerfile_lint_executable*
11 dockerfile_dockerfile_lint_executable
12 g:ale_dockerfile_dockerfile_lint_executable
14 Default: `'dockerfile_lint'`
16 This variable can be changed to specify the executable used to run
19 *ale-options.dockerfile_dockerfile_lint_options*
20 *g:ale_dockerfile_dockerfile_lint_options*
21 *b:ale_dockerfile_dockerfile_lint_options*
22 dockerfile_dockerfile_lint_options
23 g:ale_dockerfile_dockerfile_lint_options
27 This variable can be changed to add additional command-line arguments to
28 the dockerfile lint invocation - like custom rule file definitions.
31 ===============================================================================
32 dockerlinter *ale-dockerfile-dockerlinter*
34 *ale-options.dockerfile_dockerlinter_executable*
35 *g:ale_dockerfile_dockerlinter_executable*
36 *b:ale_dockerfile_dockerlinter_executable*
37 dockerfile_dockerlinter_executable
38 g:ale_dockerfile_dockerlinter_executable
40 Default: `'dockerlinter'`
42 This variable can be changed to specify the executable used to run
46 *ale-options.dockerfile_dockerlinter_options*
47 *g:ale_dockerfile_dockerlinter_options*
48 *b:ale_dockerfile_dockerlinter_options*
49 dockerfile_dockerlinter_options
50 g:ale_dockerfile_dockerlinter_options
54 This variable can be changed to add additional command-line arguments to
55 the dockerfile lint invocation - like custom rule file definitions.
58 ===============================================================================
59 dprint *ale-dockerfile-dprint*
61 See |ale-dprint-options| and https://dprint.dev/plugins/dockerfile
64 ===============================================================================
65 hadolint *ale-dockerfile-hadolint*
67 hadolint can be found at: https://github.com/hadolint/hadolint
70 -------------------------------------------------------------------------------
72 *ale-options.dockerfile_hadolint_options*
73 *g:ale_dockerfile_hadolint_options*
74 *b:ale_dockerfile_hadolint_options*
75 dockerfile_hadolint_options
76 g:ale_dockerfile_hadolint_options
80 This variable can be changed to add command-line arguments to the hadolint
81 invocation. These arguments will be used whether docker is being used or not
84 *ale-options.dockerfile_hadolint_use_docker*
85 *g:ale_dockerfile_hadolint_use_docker*
86 *b:ale_dockerfile_hadolint_use_docker*
87 dockerfile_hadolint_use_docker
88 g:ale_dockerfile_hadolint_use_docker
92 This variable controls if docker and the hadolint image are used to run this
93 linter: if 'never', docker will never be used; 'always' means docker will
94 always be used; 'yes' and docker will be used if the hadolint executable
97 For now, the default is 'never'. This may change as ale's support for using
98 docker to lint evolves.
100 *ale-options.dockerfile_hadolint_image*
101 *g:ale_dockerfile_hadolint_image*
102 *b:ale_dockerfile_hadolint_image*
103 dockerfile_hadolint_image
104 g:ale_dockerfile_hadolint_image
106 Default: `'hadolint/hadolint'`
108 This variable controls the docker image used to run hadolint. The default
109 is hadolint's author's build, and can be found at:
111 https://hub.docker.com/r/hadolint/hadolint/
114 ===============================================================================
115 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: