Repository: parquet-mr Updated Branches: refs/heads/master a0e6cc32c -> 06768d91b
PARQUET-740: Introduce editorconfig I examined some of the code and as far as I can tell this specification matches what has been done in this project so far. Please verify. Author: Niels Basjes <[email protected]> Closes #373 from nielsbasjes/PARQUET-740 and squashes the following commits: 2783fc6 [Niels Basjes] PARQUET-740: Introduce editorconfig Project: http://git-wip-us.apache.org/repos/asf/parquet-mr/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-mr/commit/06768d91 Tree: http://git-wip-us.apache.org/repos/asf/parquet-mr/tree/06768d91 Diff: http://git-wip-us.apache.org/repos/asf/parquet-mr/diff/06768d91 Branch: refs/heads/master Commit: 06768d91b5fe9eb98f5872efcbe87c3ea447f61e Parents: a0e6cc3 Author: Niels Basjes <[email protected]> Authored: Mon Oct 10 13:11:07 2016 -0700 Committer: Julien Le Dem <[email protected]> Committed: Mon Oct 10 13:11:07 2016 -0700 ---------------------------------------------------------------------- .editorconfig | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/06768d91/.editorconfig ---------------------------------------------------------------------- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e1e7a71 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,43 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space + +[*.scala] +indent_size = 2 + +[*.java] +indent_size = 2 + +[*.yaml] +indent_size = 2 + +[*.xml] +indent_size = 2 + +# Tab indentation (no size specified) +[Makefile] +indent_style = tab +
