https://gitlab.opengeosys.org/ogs/ogs.git
Revision 2194d23e328b21c09648e4d8d2d9b39a92f76540 authored by Dmitry Yu. Naumov on 19 February 2021, 07:13:25 UTC, committed by Dmitry Yu. Naumov on 19 February 2021, 07:13:25 UTC
Update doxygen links

See merge request ogs/ogs!3438
2 parent s 2b80bbf + b949454
Raw File
Tip revision: 2194d23e328b21c09648e4d8d2d9b39a92f76540 authored by Dmitry Yu. Naumov on 19 February 2021, 07:13:25 UTC
Merge branch 'UpdateDoxygenLinks' into 'master'
Tip revision: 2194d23
.pre-commit-config.yaml
repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.3.0
    hooks:
    -   id: trailing-whitespace
        args: [--markdown-linebreak-ext=md, --markdown-linebreak-ext=pandoc]
        exclude: 'ThirdParty/*|Tests/Data/*|web/static/images/xsd'
    -   id: check-added-large-files
        args: [--maxkb 1024]
    -   id: check-merge-conflict
    -   id: check-xml
    -   id: check-yaml
    -   id: check-toml
-   repo: local
    hooks:
    -   id: git-diff-check
        name: Run git diff --check
        entry: git diff --check --cached -- ':!*.md' ':!*.pandoc' ':!*.asc' ':!*.dat' ':!*.ts'
        language: system
        exclude: 'ThirdParty/*|Tests/Data/*|web/static/images/xsd'
        stages: [commit, manual]
    -   id: file-extensions
        name: Check file extensions
        entry: scripts/hooks/pre-commit-file-extensions.sh
        language: system
        files: '.*\.cpp'
        stages: [commit, manual]
    -   id: cmake-format
        name: Format CMake files
        entry: scripts/hooks/pre-commit-cmake-format.sh
        language: system
        files: 'CMakeLists.txt'
        stages: [commit, manual]
-   repo: https://github.com/ambv/black
    rev: stable
    hooks:
    - id: black
      exclude: 'ThirdParty|LinearMFront/generate_ref.py'
back to top