summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #97716 from ↵Thaddeus Crews2024-11-221-1/+2
|\ | | | | | | | | | | pafuent/add_half_precision_floating_point_to_stream_peer Add half precision floating point support to `StreamPeer` and `FileAccess`
| * Add half precision floating point support to `StreamPeer`Pablo Andres Fuente2024-11-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | Closes godotengine/godot-proposals#5983 Adds put/get methods to `StreamPeer` that handles half precision floating point values. Adds endode/decode half precision floating point to `marshalls`. Adds `get_half` and `store_half` to `FileAccess` Co-Authored-By: "Alfonso J. Ramos" <theraot@gmail.com>
* | CI: Update `ruff` & `mypy` pre-commit hooksThaddeus Crews2024-11-111-2/+2
|/ | | | | • ruff: 0.6.6 → 0.7.3 • mypy: 1.11.2 → 1.13.0
* CI: Update clang format/tidy pre-commit versionsThaddeus Crews2024-11-041-4/+4
|
* Add .clang-format-glsl checkAdam Scott2024-10-251-1/+12
|
* CI: Update `clang-format` pre-commit hook to 19.1.0Rémi Verschelde2024-09-261-1/+1
|
* Style: Update `ruff` & `mypy` to latest versionsThaddeus Crews2024-09-201-2/+2
|
* CI: Update pre-commit `clang-format` to 18.1.8Thaddeus Crews2024-09-191-1/+1
| | | | • Modernized `.clang-format` file against latest LLVM config settings
* Fix eslint .pre-commit-config.yaml by removing commasAdam Scott2024-09-161-5/+5
|
* Style: Format yaml filesThaddeus Crews2024-09-131-8/+13
|
* Add support to the Android editor for signing and verifying Android apksFredia Huya-Kouadio2024-08-261-0/+8
| | | | - Apk signing and verification is enabled using the apksig library from https://android.googlesource.com/platform/tools/apksig/+/ac5cbb07d87cc342fcf07715857a812305d69888
* Update the `GodotHost` interface to support signing and verifying Android apksFredia Huya-Kouadio2024-08-261-0/+1
| | | | | | Update the export logic to enable apk generation and signing for Android editor builds Note: Only legacy builds are supported. Gradle builds are not supported at this point in time.
* CI: Add `svgo` pre-commit hookThaddeus Crews2024-06-231-0/+8
|
* CI: Add pre-commit hook for `clang-tidy`Thaddeus Crews2024-06-171-0/+16
| | | | | • Set to "manual" so it isn't invoked in normal workflow • Modernize `.clang-tidy` file
* CI: Migrate codespell logic to `pyproject.toml`Thaddeus Crews2024-06-031-29/+2
|
* CI: Make local python hooks multi-platformThaddeus Crews2024-06-021-15/+16
|
* Upgrade to eslint 9patwork2024-05-221-31/+16
|
* Merge pull request #90457 from Chubercik/ruff-formatterRémi Verschelde2024-05-221-5/+5
|\ | | | | | | Replace `black` formatter with `ruff`
| * Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-5/+5
| |
* | Pre-commit: Allow adding downstream hooks without (less) risk of conflictsRémi Verschelde2024-05-211-0/+13
|/ | | | | Apply Godot copyright header only on the platform folders that we maintain upstream. This lets downstream forks decide what to do with their potential proprietary platforms.
* Fix for jsdoc hook in pre-commitpatwork2024-05-161-2/+12
|
* SCons: Consolidate pysettings via `pyproject.toml`Thaddeus Crews2024-05-141-3/+0
|
* CI: Overhaul static checks to use `pre-commit`Thaddeus Crews2024-05-081-13/+139
|
* Pre-commit: Fix `copyright_headers.py` to run on all relevant filesRémi Verschelde2024-03-151-2/+2
| | | | | It was only running on the first file passed by pre-commit, instead of all. Fixes compatibility with Windows paths to get the basename.
* Merge pull request #88933 from raulsntos/dotnet/pre-commitRémi Verschelde2024-03-021-0/+6
|\ | | | | Move dotnet-format script to pre-commit
| * Move dotnet-format script to pre-commitRaul Santos2024-03-021-0/+6
| | | | | | | | Co-authored-by: Paul Joannon <437025+paulloz@users.noreply.github.com>
* | Pre-commit: Update to clang-format 17.0.6 and black 24.2.0Rémi Verschelde2024-02-281-2/+2
|/
* Replace hand-written pre-commit hooks with `pre-commit` Python toolAarni Koskela2024-02-261-0/+49
`pre-commit` can be installed with pip, and configured in the Godot repo with `pre-commit install`. It can then easily be run both locally with `pre-commit run`, and on CI, in a cross-platform way. This makes it much easier for contributors to set up pre-commit hooks, without having to manually copy files to their git folder. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>