Skip to content

Commit 2df4a9c

Browse files
committed
Add script and a little bit of data
1 parent 96dc5d7 commit 2df4a9c

File tree

154 files changed

+670
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+670
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# ignore these files
2+
3+
# esgf-pyclient cache
4+
*.sqlite
5+
6+
# config file
7+
config.yml

.pre-commit-config.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
---
4+
exclude: |
5+
(?x)
6+
^doc/conf.py
7+
repos:
8+
- repo: https://github.com/pre-commit/pre-commit-hooks
9+
rev: v2.4.0
10+
hooks:
11+
- id: check-added-large-files
12+
- id: check-ast
13+
- id: check-case-conflict
14+
- id: check-merge-conflict
15+
- id: debug-statements
16+
- id: end-of-file-fixer
17+
- id: trailing-whitespace
18+
args: [--markdown-linebreak-ext=md]
19+
- repo: https://github.com/adrienverge/yamllint
20+
rev: ''
21+
hooks:
22+
- id: yamllint
23+
- repo: https://github.com/codespell-project/codespell
24+
rev: ''
25+
hooks:
26+
- id: codespell
27+
- repo: https://github.com/PyCQA/isort
28+
rev: ''
29+
hooks:
30+
- id: isort
31+
- repo: https://github.com/pre-commit/mirrors-yapf
32+
rev: ''
33+
hooks:
34+
- id: yapf
35+
- repo: https://github.com/myint/docformatter
36+
rev: ''
37+
hooks:
38+
- id: docformatter
39+
- repo: https://gitlab.com/pycqa/flake8
40+
rev: ''
41+
hooks:
42+
- id: flake8

.prospector.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# prospector configuration file
2+
3+
---
4+
5+
output-format: grouped
6+
7+
strictness: veryhigh
8+
doc-warnings: true
9+
test-warnings: true
10+
member-warnings: false
11+
12+
pyroma:
13+
run: true
14+
15+
pep8:
16+
full: true
17+
18+
pep257:
19+
# disable rules that are allowed by the numpy convention
20+
# see https://github.com/PyCQA/pydocstyle/blob/master/src/pydocstyle/violations.py
21+
# and http://pydocstyle.readthedocs.io/en/latest/error_codes.html
22+
disable: ['D107', 'D203', 'D212', 'D213', 'D402', 'D413', 'D416']

0 commit comments

Comments
 (0)