This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-swift.git
commit 33cee19db37d6160bf522d4a1a305c8fb08bda65 Author: Antoine Pitrou <[email protected]> AuthorDate: Mon Dec 2 16:11:42 2024 +0100 GH-44805: [Dev] Add `.editorconfig` file (#44870) Add EditorConfig files for automatic text editor configuration. Only the most basic properties such as indent width are set. Also remove `.dir-locals.el` files. * GitHub Issue: #44805 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]> --- .editorconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ffaf7e2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +# 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. + +# This is an EditorConfig file: https://editorconfig.org/ + +# See ../.editorconfig for inherited values + +[*.{c,cc,cpp,h,hh,hpp}] +indent_size = 4 +indent_style = space + +[*.swift] +indent_size = 4 +indent_style = space
