Skip to content

Commit 0193213

Browse files
authored
Merge pull request #149 from jmmshn/master
New features for pathway identification and charge barrier analysis
2 parents 1e1e6e8 + 9a1b3dd commit 0193213

File tree

7 files changed

+1044
-175
lines changed

7 files changed

+1044
-175
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ distribute-0.6.34-py2.7.egg
2727
distribute-0.6.34.tar.gz
2828

2929
pymatgen_diffusion/\.vscode/
30+
31+
.vscode/

.pre-commit-config.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v2.3.0
4+
hooks:
5+
- id: check-yaml
6+
- id: end-of-file-fixer
7+
- id: trailing-whitespace
8+
- id: flake8
9+
args: ["--max-line-length=120"]
10+
- repo: https://github.com/psf/black
11+
rev: 20.8b1 # Replace by any tag/version: https://github.com/psf/black/tags
12+
hooks:
13+
- id: black
14+
language_version: python3 # Should be a command that runs python3.6+

0 commit comments

Comments
 (0)