source: sasview/.gitignore

ESS_GUI
Last change on this file was 7cc38a7, checked in by ibressler, 6 years ago

let git ignore VI temp files

  • Property mode set to 100644
File size: 1.5 KB
Line 
1# It is actually possible to list all the old svn ignore properties:
2#
3# svn pg -R svn:ignore .
4#
5# But there's a whole load of useless stuff in there that is no longer used.
6# Instead I did a clean build including the docs, ran the tests, and then ran
7# sasview for a bit and then did a git status to see what extra stuff was being
8# generated.
9#
10# Feel free to add more stuff to this as and when it becomes an issue.
11
12# stack dumps due to Git Bash internal crashes
13*.stackdump
14
15# Editor files
16*.pyproj
17*.sln
18.*.swp
19.DS_Store
20/.settings
21/.vscode
22/.project
23/.pydevproject
24/.idea
25/.vs
26
27# Build and run files
28**/__pycache__
29*.pyc
30*.so
31/.vagrant
32/build
33/dist
34sasview.egg-info
35.mplconfig
36default_categories.json
37/setup.cfg
38**/UI/*.py
39!**/UI/__init__.py
40
41# doc build
42/docs/sphinx-docs/build
43/docs/sphinx-docs/source-temp
44/docs/sphinx-docs/source/dev/api
45/docs/sphinx-docs/source/user/guiframe
46/docs/sphinx-docs/source/user/models
47/docs/sphinx-docs/source/user/sasview
48/docs/sphinx-docs/source/user/perspectives
49/docs/sphinx-docs/katex*.zip
50/docs/sphinx-docs/node_modules
51/docs/sphinx-docs/node-package.json
52
53# test outputs
54/test/pr_inversion/test/test_output.txt
55/test/sasdataloader/test/plugins.zip
56/test/sasdataloader/test/test_log.txt
57/test/sasdataloader/test/isis_1_0_write_test.xml
58/test/sasdataloader/test/isis_1_1_write_test.xml
59/test/sasdataloader/test/write_test.xml
60/test/fileconverter/test/export2d.h5
61**/test/logs
62tests.log
63
64# Installer files
65/sasview-install
66/installers/installer.iss
67/installers/build
68/installers/dist
Note: See TracBrowser for help on using the repository browser.