From 68cdb02e0cd9c84f760f8ddb43bf439959ba08f4 Mon Sep 17 00:00:00 2001 From: Elias Carvalho Date: Mon, 4 Nov 2024 08:38:18 -0300 Subject: [PATCH] Initial commit --- .JuliaFormatter.toml | 11 +++++++++- .github/workflows/Format.yml | 11 ++++++++++ .gitignore | 8 ++++++- README.md | 2 +- test/Manifest.toml | 41 ------------------------------------ 5 files changed, 29 insertions(+), 44 deletions(-) create mode 100644 .github/workflows/Format.yml delete mode 100644 test/Manifest.toml diff --git a/.JuliaFormatter.toml b/.JuliaFormatter.toml index 01bfab9..eb77a5b 100644 --- a/.JuliaFormatter.toml +++ b/.JuliaFormatter.toml @@ -1 +1,10 @@ -# See https://domluna.github.io/JuliaFormatter.jl/stable/ for a list of options +indent = 2 +margin = 120 +always_for_in = true +always_use_return = false +whitespace_typedefs = false +whitespace_in_kwargs = false +whitespace_ops_in_indices = true +remove_extra_newlines = true +trailing_comma = false +normalize_line_endings = "unix" diff --git a/.github/workflows/Format.yml b/.github/workflows/Format.yml new file mode 100644 index 0000000..8ce8a2d --- /dev/null +++ b/.github/workflows/Format.yml @@ -0,0 +1,11 @@ +name: Format suggestions +on: + pull_request + +jobs: + code-style: + runs-on: ubuntu-latest + steps: + - uses: julia-actions/julia-format@v3 + with: + version: '1' # Set `version` to '1.0.54' if you need to use JuliaFormatter.jl v1.0.54 (default: '1') diff --git a/.gitignore b/.gitignore index 0f84bed..a14a49f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,10 @@ *.jl.*.cov *.jl.cov *.jl.mem -/Manifest.toml +.DS_Store +Manifest.toml +.vscode +*.code-workspace +docs/build +/.benchmarkci +/benchmark/*.json diff --git a/README.md b/README.md index 44056c7..1f85b53 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# GeoTIFF +# GeoTIFF.jl [![Build Status](https://github.com/JuliaEarth/GeoTIFF.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaEarth/GeoTIFF.jl/actions/workflows/CI.yml?query=branch%3Amain) [![Coverage](https://codecov.io/gh/JuliaEarth/GeoTIFF.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaEarth/GeoTIFF.jl) diff --git a/test/Manifest.toml b/test/Manifest.toml deleted file mode 100644 index 4f9f655..0000000 --- a/test/Manifest.toml +++ /dev/null @@ -1,41 +0,0 @@ -# This file is machine-generated - editing it directly is not advised - -julia_version = "1.11.1" -manifest_format = "2.0" -project_hash = "71d91126b5a1fb1020e1098d9d492de2a4438fd2" - -[[deps.Base64]] -uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" -version = "1.11.0" - -[[deps.InteractiveUtils]] -deps = ["Markdown"] -uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" -version = "1.11.0" - -[[deps.Logging]] -uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" -version = "1.11.0" - -[[deps.Markdown]] -deps = ["Base64"] -uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" -version = "1.11.0" - -[[deps.Random]] -deps = ["SHA"] -uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" -version = "1.11.0" - -[[deps.SHA]] -uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" -version = "0.7.0" - -[[deps.Serialization]] -uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" -version = "1.11.0" - -[[deps.Test]] -deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] -uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" -version = "1.11.0"