Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmlformatsettings.cpp
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5
6QQmlFormatSettings::QQmlFormatSettings(const QString &toolName) : QQmlToolingSettings(toolName)
7{
8 addOption(s_useTabsSetting);
9 addOption(s_indentWidthSetting, 4);
10 addOption(s_normalizeSetting);
11 addOption(s_newlineSetting, QStringLiteral("native"));
12 addOption(s_objectsSpacingSetting);
13 addOption(s_functionsSpacingSetting);
14}