Skip to content

Commit e4154fc

Browse files
fix(forecast): correct getForecast to use _buildForecastUrl endpoint and new rules .gitignore
1 parent 7bdf2b0 commit e4154fc

File tree

3 files changed

+3308
-34
lines changed

3 files changed

+3308
-34
lines changed

.gitignore

Lines changed: 52 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,69 @@
11
# Dependencies
22
node_modules/
3-
npm-debug.log*
4-
yarn-debug.log*
5-
yarn-error.log*
6-
package-lock.json
7-
yarn.lock
83

9-
# Build output
10-
dist/
11-
build/
12-
*.min.js
13-
*.min.css
4+
# Logs and temp files
5+
*.log
6+
*.tmp
147

15-
# Environment variables
8+
# Environment
169
.env
1710
.env.local
18-
.env.*.local
11+
.env.*
1912

20-
# IDE
13+
# Editors
2114
.vscode/
2215
.idea/
23-
*.swp
24-
*.swo
25-
*~
26-
.DS_Store
2716

28-
# Logs
29-
logs/
30-
*.log
17+
# Python
18+
__pycache__/
19+
*.pyc
20+
*.pyo
21+
*.pyd
3122

32-
# OS
23+
# Build directories
24+
dist/
25+
build/
26+
target/
27+
28+
# Compression files
29+
*.zip
30+
*.gz
31+
*.tar
32+
*.tgz
33+
*.bz2
34+
*.xz
35+
*.7z
36+
*.rar
37+
*.zst
38+
*.lz4
39+
*.lzh
40+
*.cab
41+
*.arj
42+
*.rpm
43+
*.deb
44+
*.Z
45+
*.lz
46+
*.lzo
47+
*.tar.gz
48+
*.tar.bz2
49+
*.tar.xz
50+
*.tar.zst
51+
52+
# OS generated files
53+
.DS_Store
3354
Thumbs.db
34-
Desktop.ini
3555

3656
# Testing
3757
coverage/
38-
.nyc_output/
58+
htmlcov/
59+
.coverage
3960

40-
# Temporary files
41-
tmp/
42-
temp/
43-
*.tmp
44-
45-
# Security
46-
*.pem
47-
*.key
61+
# IDE specific
62+
*.swp
63+
*.swo
64+
*.out
4865

49-
# Netlify
50-
.netlify/.env
66+
# Virtual environments
67+
.venv/
68+
venv/
69+
.env/

0 commit comments

Comments
 (0)