aboutsummaryrefslogtreecommitdiff
path: root/scalastyle-config.xml
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2016-01-12 00:51:00 -0800
committerReynold Xin <rxin@databricks.com>2016-01-12 00:51:00 -0800
commit8cfa218f4f1b05f4d076ec15dd0a033ad3e4500d (patch)
tree31e99044d63b89311821df7a61e6f4882114677a /scalastyle-config.xml
parent112abf9100f05be436e449817468c50174712c78 (diff)
downloadspark-8cfa218f4f1b05f4d076ec15dd0a033ad3e4500d.tar.gz
spark-8cfa218f4f1b05f4d076ec15dd0a033ad3e4500d.tar.bz2
spark-8cfa218f4f1b05f4d076ec15dd0a033ad3e4500d.zip
[SPARK-12692][BUILD][SQL] Scala style: Fix the style violation (Space before "," or ":")
Fix the style violation (space before , and :). This PR is a followup for #10643. Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #10718 from sarutak/SPARK-12692-followup-sql.
Diffstat (limited to 'scalastyle-config.xml')
-rw-r--r--scalastyle-config.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/scalastyle-config.xml b/scalastyle-config.xml
index 2439a1f715..b873b62721 100644
--- a/scalastyle-config.xml
+++ b/scalastyle-config.xml
@@ -218,7 +218,7 @@ This file is divided into 3 sections:
<check level="error" class="org.scalastyle.scalariform.EqualsHashCodeChecker" enabled="false"></check>
<!-- Should turn this on, but we have a few places that need to be fixed first -->
- <check level="warning" class="org.scalastyle.scalariform.DisallowSpaceBeforeTokenChecker" enabled="true">
+ <check customId="whitespacebeforetoken" level="warning" class="org.scalastyle.scalariform.DisallowSpaceBeforeTokenChecker" enabled="true">
<parameters>
<parameter name="tokens">COLON, COMMA</parameter>
</parameters>