aboutsummaryrefslogtreecommitdiffstats
path: root/integration/intellij/src/main/java/ai/vespa/intellij/schema/SdCodeStyleSettings.java
blob: bdf1bf3eb7b077024550d846b2e81cafc8d591e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.intellij.schema;

import com.intellij.psi.codeStyle.CodeStyleSettings;
import com.intellij.psi.codeStyle.CustomCodeStyleSettings;

/**
 * This class represent a code style settings, and creates an option page in settings/preferences.
 *
 * @author Shahar Ariel
 */
public class SdCodeStyleSettings extends CustomCodeStyleSettings {
    
    public SdCodeStyleSettings(CodeStyleSettings settings) {
        super("SdCodeStyleSettings", settings);
    }
    
}