From d8936de96a268aefec12d79152bb169697360fdf Mon Sep 17 00:00:00 2001
From: B13nch3n <b13nch3n_01@theb-si.de>
Date: Thu, 5 May 2022 17:55:42 +0200
Subject: [PATCH] Still setting up things

---
 docker/README.md | 12 ++++++++++++
 pyproject.toml   |  6 ++++++
 2 files changed, 18 insertions(+)

diff --git a/docker/README.md b/docker/README.md
index 0919968..2cca294 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -1,3 +1,15 @@
 # Docker container (base) for the converter software
 
 This directory contains all the files needed to create the base Docker image used for the converter software in [projects](projects/).
+
+<!--
+build:
+- go to repo root
+- execute: docker build -f docker/Dockerfile -t mmcifconverter:20220427
+
+run interactive shell for development:
+- make sure files exist: /Users/stefan/Projects/ma-converters.git/projects/pointmutations-haddock/.docker-bash-history
+- execute:
+docker run --rm -i -v /Users/stefan/.bash_profile:/home/mmcif/.bash_profile -v /Users/stefan/.bash_aliases:/home/mmcif/.bash_aliases -v /Users/stefan/.bashrc:/home/mmcif/.bashrc -v /Users/stefan/Projects/ma-converters.git/projects/pointmutations-haddock/.docker-bash-history:/home/mmcif/.bash_history -v /Users/stefan/Projects/ma-converters.git/:/develop -t mmcifconverter:20220427 bash
+
+ -->
diff --git a/pyproject.toml b/pyproject.toml
index b95b5ec..90392da 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,11 @@
 [tool.black]
 line-length=80
 
+[tool.pylint.MASTER]
+# A comma-separated list of package or module names from where C extensions may
+# be loaded. Extensions are loading into the active Python interpreter and may
+# run arbitrary code
+extension-pkg-allow-list='ujson'
+
 [tool.pylint.REPORTS]
 reports='no'
-- 
GitLab