Skip to content

Commit 96dece4

Browse files
committed
removed .markdownlint.json, .markdownlintignore, and some other unwanted files
1 parent 3e36876 commit 96dece4

File tree

8 files changed

+6
-253
lines changed

8 files changed

+6
-253
lines changed

.markdownlint.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

.markdownlintignore

Lines changed: 0 additions & 21 deletions
This file was deleted.

.pylintrc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ init-hook="import numpy"
1111

1212
# Add files or directories to the blacklist. They should be base names, not
1313
# paths.
14-
ignore=venv_pygem,build,pygem.egg-info,docs,dockerfiles,test_final_verification.py,code_formatter.sh,pyproject.toml
14+
ignore=build,pygem.egg-info,docs,dockerfiles,code_formatter.sh,pyproject.toml
1515

1616
# Pickle collected data for later comparisons.
1717
persistent=no
@@ -177,7 +177,7 @@ output-format=parseable
177177
# Put messages in a separate file for each module / package specified on the
178178
# command line instead of printing them on stdout. Reports (if any) will be
179179
# written in a file name "pylint_global.[txt|html]".
180-
# files-output=no
180+
files-output=no
181181

182182
# Tells whether to display a full report or only the messages
183183
reports=no
@@ -217,7 +217,7 @@ single-line-if-stmt=no
217217
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
218218
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
219219
# `empty-line` allows space-only lines.
220-
# no-space-check=trailing-comma,dict-separator
220+
no-space-check=trailing-comma,dict-separator
221221

222222
# Maximum number of lines in a module
223223
max-module-lines=1000
@@ -315,7 +315,7 @@ notes=FIXME,XXX,TODO
315315
[BASIC]
316316

317317
# List of builtins function names that should not be used, separated by a comma
318-
# bad-functions=map,filter,input
318+
bad-functions=map,filter,input
319319

320320
# Good variable names which should always be accepted, separated by a comma
321321
good-names=i,j,k,x,y,z,ex,Run,_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ package.
4646

4747
**PyGeM** requires `numpy`, `scipy`, and `matplotlib` as core dependencies.
4848
`sphinx` is needed for the documentation and `pytest` for testing. They can be
49-
easily installed via `pip`. The code has been tested with Python3.12.9 version,
49+
easily installed via `pip`. The code has been tested with Python3.10 version,
5050
but it should be compatible with Python3.9+. Python2 support is no longer
5151
maintained.
5252

cube.stl

Lines changed: 0 additions & 86 deletions
This file was deleted.

cube.vtp

Lines changed: 0 additions & 33 deletions
This file was deleted.

deform_cube.stl

Lines changed: 0 additions & 86 deletions
This file was deleted.

pygem/cad/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
from .rbf import RBF
1717
from .idw import IDW # noqa: F401
1818
from .custom_deformation import CustomDeformation # noqa: F401
19-
from .cad_deformation import CADDeformation
19+
from .cad_deformation import CADDeformation # noqa: F401

0 commit comments

Comments
 (0)