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 CSS Integration *ale-css-options*
5 ===============================================================================
6 cspell *ale-css-cspell*
8 See |ale-cspell-options|
11 ===============================================================================
12 css-beautify *ale-css-css-beautify*
14 *ale-options.css_css_beautify_executable*
15 *g:ale_css_css_beautify_executable*
16 *b:ale_css_css_beautify_executable*
17 css_css_beautify_executable
18 g:ale_css_css_beautify_executable
20 Default: `'css-beautify'`
22 See |ale-integrations-local-executables|
24 *ale-options.css_css_beautify_options*
25 *g:ale_css_css_beautify_options*
26 *b:ale_css_css_beautify_options*
27 css_css_beautify_options
28 g:ale_css_css_beautify_options
32 This variable can be set to pass additional options to css-beautify.
34 *ale-options.css_css_beautify_use_global*
35 *g:ale_css_css_beautify_use_global*
36 *b:ale_css_css_beautify_use_global*
37 css_css_beautify_use_global
38 g:ale_css_css_beautify_use_global
40 Default: `get(g:, 'ale_use_global_executables', 0)`
42 See |ale-integrations-local-executables|
45 ===============================================================================
48 `fecs` options for CSS is the same as the options for JavaScript, and both of
49 them reads `./.fecsrc` as the default configuration file. See:
50 |ale-javascript-fecs|.
53 ===============================================================================
54 prettier *ale-css-prettier*
56 See |ale-javascript-prettier| for information about the available options.
59 ===============================================================================
60 stylelint *ale-css-stylelint*
62 *ale-options.css_stylelint_executable*
63 *g:ale_css_stylelint_executable*
64 *b:ale_css_stylelint_executable*
65 css_stylelint_executable
66 g:ale_css_stylelint_executable
68 Default: `'stylelint'`
70 See |ale-integrations-local-executables|
72 *ale-options.css_stylelint_options*
73 *g:ale_css_stylelint_options*
74 *b:ale_css_stylelint_options*
76 g:ale_css_stylelint_options
80 This variable can be set to pass additional options to stylelint.
82 *ale-options.css_stylelint_use_global*
83 *g:ale_css_stylelint_use_global*
84 *b:ale_css_stylelint_use_global*
85 css_stylelint_use_global
86 g:ale_css_stylelint_use_global
88 Default: `get(g:, 'ale_use_global_executables', 0)`
90 See |ale-integrations-local-executables|
93 ===============================================================================
94 vscodecss *ale-css-vscode*
96 Website: https://github.com/hrsh7th/vscode-langservers-extracted
99 -------------------------------------------------------------------------------
102 Install VSCode css language server either globally or locally: >
104 npm install -g vscode-langservers-extracted
107 ===============================================================================
108 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: