Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .JuliaFormatter.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ always_for_in = false
separate_kwargs_with_semicolon = true
margin = 132
yas_style_nesting=true
ignore = "examples/PlutoGridFactory.jl"
ignore = "examples/PlutoGridFactory.jl"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ jobs:
PYTHON: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}


1 change: 0 additions & 1 deletion .github/workflows/format_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@ jobs:
exit(1)
end'


21 changes: 21 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: pre-commit

on:
pull_request:

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: 1.11
- run: |
julia --project=@runic -e '
using Pkg
Pkg.add("Runic")'
env:
PYTHON: ""
- uses: actions/setup-python@v5
- uses: pre-commit/action@v3.0.1
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ docs/src/examples
*~
Manifest*.toml
.repl_history.jl
quarry
quarry
21 changes: 21 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
args: [--maxkb=8192]
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
args: [--allow-multiple-documents]
- id: end-of-file-fixer
- id: no-commit-to-branch
args: [--branch,master]
- repo: https://github.com/gitleaks/gitleaks
rev: v8.16.3
hooks:
- id: gitleaks
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
hooks:
- id: codespell
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ Should be essentially non-breaking, but it is time to move to real semver
- TetGen/Triangulate version check via weakdeps and compat (starting with 1.9)
- allow builderplot with Makie
- Formatting

1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,3 @@ Provides `SimplexGridBuilder`, a convenience interface to the triangle (via [T
TetGen (via [TetGen.jl](https://github.com/JuliaGeometry/TetGen.jl)) mesh generators. Code using it needs to pass the `Triangulate` resp.
the `TetGen` module as parameter to the constructor of `SimplexGridBuilder` and thus needs to
adhere to their respective license conditions. This package itself is MIT licensed.


2 changes: 0 additions & 2 deletions docs/src/allindex.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
```@index
Modules = [SimplexGridFactory]
```


4 changes: 0 additions & 4 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,3 @@ Pages = ["plot.jl"]
Modules = [SimplexGridFactory]
Pages = ["primitives.jl"]
```




1 change: 0 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ SimplexGridFactory
```@contents
Depth=5
```

2 changes: 0 additions & 2 deletions docs/src/pluto.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Pluto Notebook(s)

[PlutoGridFactory](https://github.com/WIAS-PDELib/SimplexGridFactory.jl/raw/master/examples/PlutoGridFactory.jl)


Loading