]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-css.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-css.txt
1 ===============================================================================
2 ALE CSS Integration                                           *ale-css-options*
3
4
5 ===============================================================================
6 cspell                                                         *ale-css-cspell*
7
8 See |ale-cspell-options|
9
10
11 ===============================================================================
12 css-beautify                                             *ale-css-css-beautify*
13
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
19   Type: |String|
20   Default: `'css-beautify'`
21
22   See |ale-integrations-local-executables|
23
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
29   Type: |String|
30   Default: `''`
31
32   This variable can be set to pass additional options to css-beautify.
33
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
39   Type: |String|
40   Default: `get(g:, 'ale_use_global_executables', 0)`
41
42   See |ale-integrations-local-executables|
43
44
45 ===============================================================================
46 fecs                                                             *ale-css-fecs*
47
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|.
51
52
53 ===============================================================================
54 prettier                                                     *ale-css-prettier*
55
56 See |ale-javascript-prettier| for information about the available options.
57
58
59 ===============================================================================
60 stylelint                                                   *ale-css-stylelint*
61
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
67   Type: |String|
68   Default: `'stylelint'`
69
70   See |ale-integrations-local-executables|
71
72                                             *ale-options.css_stylelint_options*
73                                                   *g:ale_css_stylelint_options*
74                                                   *b:ale_css_stylelint_options*
75 css_stylelint_options
76 g:ale_css_stylelint_options
77   Type: |String|
78   Default: `''`
79
80   This variable can be set to pass additional options to stylelint.
81
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
87   Type: |String|
88   Default: `get(g:, 'ale_use_global_executables', 0)`
89
90   See |ale-integrations-local-executables|
91
92
93 ===============================================================================
94 vscodecss                                                      *ale-css-vscode*
95
96 Website: https://github.com/hrsh7th/vscode-langservers-extracted
97
98
99 -------------------------------------------------------------------------------
100 Installation
101
102 Install VSCode css language server either globally or locally: >
103
104   npm install -g vscode-langservers-extracted
105 <
106
107 ===============================================================================
108   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: