File: lsFormattingOptions.h

package info (click to toggle)
asymptote 2.85%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 43,264 kB
  • sloc: cpp: 210,491; ansic: 98,376; python: 14,568; javascript: 6,629; sh: 4,301; perl: 1,566; lisp: 1,505; makefile: 764; yacc: 554; lex: 446; xml: 182; objc: 177
file content (43 lines) | stat: -rw-r--r-- 1,438 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once

#include "LibLsp/JsonRpc/serializer.h"

struct lsFormattingOptions {
        struct KeyData {
                boost::optional<bool> _boolean;
                boost::optional<int32_t> _integer;
                boost::optional<std::string> _string;
        };

        // Size of a tab in spaces.
        int tabSize =4;
        // Prefer spaces over tabs.
        bool insertSpaces = true;

        /**
                 * Trim trailing whitespace on a line.
                 *
                 * @since 3.15.0
                 */
        boost::optional<bool> trimTrailingWhitespace;

        /**
         * Insert a newline character at the end of the file if one does not exist.
         *
         * @since 3.15.0
         */
        boost::optional<bool> insertFinalNewline;

        /**
         * Trim all newlines after the final newline at the end of the file.
         *
         * @since 3.15.0
         */
        boost::optional<bool> trimFinalNewlines;
        boost::optional<KeyData> key;
    MAKE_SWAP_METHOD(lsFormattingOptions, tabSize, insertSpaces, trimTrailingWhitespace, insertFinalNewline, trimFinalNewlines, key)
};
MAKE_REFLECT_STRUCT(lsFormattingOptions, tabSize, insertSpaces, trimTrailingWhitespace, insertFinalNewline, trimFinalNewlines, key);

extern void Reflect(Reader& visitor, lsFormattingOptions::KeyData& value);
extern  void Reflect(Writer& visitor, lsFormattingOptions::KeyData& value);