Skip to content

Commit 2f45198

Browse files
added gitignore
1 parent 829e3ea commit 2f45198

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# We use a single .gitignore to centralize all the ignore patterns.
2+
# This also works best with Prettier's --ignore-path option (https://prettier.io/docs/en/cli.html#ignore-path).
3+
4+
# Shared
5+
.cache/
6+
dist/
7+
lib/
8+
test-results/
9+
10+
# CLI
11+
/atoti.js
12+
13+
# Docker
14+
tmp/
15+
16+
# JavaScript
17+
javascript/app/env.js
18+
node_modules/
19+
python/atoti-jupyterlab/labextension/
20+
tsconfig.tsbuildinfo
21+
22+
# Notebooks
23+
.ipynb_checkpoints/
24+
25+
# Python
26+
.mypy_cache/
27+
__pycache__/
28+
python/**/__resources__/**/*.jar
29+
python/atoti-client/src/atoti/__resources__/app-extensions/
30+
python/atoti-client/src/atoti/__resources__/atoti-server-version.txt
31+
python/atoti-client/src/atoti/__resources__/tutorial
32+
python/atoti-client/src/atoti/_graphql_client
33+
python/atoti-client/graphql/schema.gql
34+
!python/atoti-client/tests_atoti/__resources__/config/extra_jar/test.jar
35+
python/atoti-server/src/_atoti_server/__resources__/community.lic
36+
python/docs/_static/report.pdf
37+
python/docs/api/
38+
python/docs/app-extension-template.zip
39+
python/docs/eula.rst
40+
python/docs/how_tos/__resources__/watch_local_files/current/sales_2021_05_03.csv
41+
python/test-utils/src/test_utils/__resources__/
42+
43+
# Used to speed up `tsc --build` in packages only relying on TypeScript for type checking (e.g. transpilation/bundling delegated to other tools).
44+
.typescript-cache/
45+
46+
# Additional "ignores" for Prettier
47+
.tool-versions
48+
.venv/

0 commit comments

Comments
 (0)