forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
56 lines (47 loc) · 801 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Ignore IDE files
.vscode
.idea
/.sqlfluff
**/.DS_Store
# Ignore Python cache and prebuilt things
.cache
__pycache__
*.egg-info
*.pyc
build
_build
dist
.pytest_cache
# Ignore the Environment
env
.tox
venv
.venv
.python-version
# Ignore coverage reports
.coverage
.coverage.*
coverage.xml
htmlcov
# Ignore test reports
.test-reports
test-reports
# Ignore root testing sql & python files
/test*.sql
/test*.py
/test*.txt
/.hypothesis/
# Ignore dbt outputs from testing
/target
# Ignore any timing outputs
/*.csv
# Ignore conda environment.yml contributors might be using and direnv config
environment.yml
.envrc
**/*FIXED.sql
*.prof
# Ignore temp packages.yml generated during testing.
plugins/sqlfluff-templater-dbt/test/fixtures/dbt/dbt_project/packages.yml
# VSCode
.vscode
*.code-workspace