https://github.com/ESMValGroup/ESMValTool
Revision f61cb163d4c11098cbee39f69f0ebd7ab5491893 authored by Klaus Zimmermann on 21 December 2020, 10:08:16 UTC, committed by GitHub on 21 December 2020, 10:08:16 UTC
* Add labels to changelogs of individual versions for easy reference

* Add "Past releases" section and sort releases into upcoming and past

* Change link and table formatting

* Add new release manager for version 2.2.0

Co-authored-by: Bouwe Andela <b.andela@esciencecenter.nl>

Co-authored-by: Bouwe Andela <b.andela@esciencecenter.nl>
1 parent da9521a
Raw File
Tip revision: f61cb163d4c11098cbee39f69f0ebd7ab5491893 authored by Klaus Zimmermann on 21 December 2020, 10:08:16 UTC
Update release schedule (#1948)
Tip revision: f61cb16
.pre-commit-config.yaml
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
---
exclude: |
  (?x)
  ^doc/sphinx/source/conf.py|
  ^esmvaltool/diag_scripts/extreme_events/climdex.pcic.ncdf/|
  ^esmvaltool/diag_scripts/cvdp/
repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.4.0
    hooks:
      - id: check-added-large-files
      - id: check-ast
      - id: check-case-conflict
      - id: check-merge-conflict
      - id: debug-statements
      - id: end-of-file-fixer
      - id: trailing-whitespace
        args: [--markdown-linebreak-ext=md]
  - repo: https://github.com/adrienverge/yamllint
    rev: ''
    hooks:
      - id: yamllint
  - repo: local  # nclcodestyle is installed alongside ESMValTool
    hooks:
      - id: nclcodestyle
        name: nclcodestyle
        entry: nclcodestyle
        language: system
        files: '\.(ncl|NCL)$'
  - repo: https://github.com/lorenzwalthert/precommit/  # Checks for R
    rev: ''
    hooks:
      - id: style-files  # styler
      - id: lintr
  - repo: https://github.com/codespell-project/codespell
    rev: ''
    hooks:
      - id: codespell
  - repo: https://github.com/PyCQA/isort
    rev: ''
    hooks:
      - id: isort
  - repo: https://github.com/pre-commit/mirrors-yapf
    rev: ''
    hooks:
      - id: yapf
  - repo: https://github.com/myint/docformatter
    rev: ''
    hooks:
      - id: docformatter
  - repo: https://gitlab.com/pycqa/flake8
    rev: ''
    hooks:
      - id: flake8
  # - repo: https://github.com/PyCQA/prospector
  #   rev: ''
  #   hooks:
  #     - id: prospector
  #       additional_dependencies: [
  #         'pyroma',
  #       ]
back to top