Skip to content

Commit

Permalink
Add pyrightconfig.json to gitignore
Browse files Browse the repository at this point in the history
Deleted ignores that are no longer needed
Their origin is described below

From when we compiled python modules
*.o # object files
*.so # compiled libs
/src/build
/cmake.sh # script that ran cmake
/dist
/_skbuild # scikit-build folder
.libs # created by libtool when compiling/linking
/compile_commands.json # c/c++ compilation database

Compiled python code. Could not find after pip installing with and
without -e in clean repo
*.pyc

Old source code management tool
.svn/
*/.svn/

Visual Studio files (not vs code)
*.user
*.user.*

Not used any more
/test-data/Equinor

Protobuf files
*_pb2.py
*_pb2.pyi
  • Loading branch information
JHolba committed Aug 22, 2024
1 parent 3c36be5 commit 9add0ee
Showing 1 changed file with 34 additions and 22 deletions.
56 changes: 34 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,48 @@
*.o
*.so
.svn/
*/.svn/
*.pyc
*~
*.user
*.user.*
# NFS files marked for deletion
.nfs*

# Temporary files when editing
*.swp
*~

# IDE ignore
## IntelliJ/PyCharm
.idea
*.iml
## VS code
.vscode
## Eclipse?
/.project

# pytest ignores
.pytest_cache

# bytecode compiled python
__pycache__
/build
/src/build
/test-data/Equinor

# GNU tags
/GPATH
/GRTAGS
/GTAGS
/gtags.sh
/cmake.sh
scratch.sparsebundle
*.iml

# MacOS
*.DS_Store
/.project
scratch.sparsebundle

# Common Python virtual env dir
/venv

# python package. by distutils
*.egg*
/dist

# pip install
src/ert/shared/version.py
/venv
## pip install without -e
/build

# cache folder for hypothesis framework
.hypothesis
/_skbuild
.libs
/compile_commands.json
*_pb2.py
*_pb2.pyi

# config for pyright
pyrightconfig.json

0 comments on commit 9add0ee

Please sign in to comment.