Skip to content

Commit

Permalink
Removing .json from ignore list so we don't miss JSON resource files.
Browse files Browse the repository at this point in the history
  • Loading branch information
byarger-ebay committed Apr 29, 2024
1 parent 70709fc commit e7f5cc7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*.tar.gz
*.rar
*.har
*.json

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"numberOfFruit": 100,
"typesOfApples": [
{
"name": "Fuji",
"color": 1
},
{
"name": "Gala",
"color": "YELLOW"
}
],
"typesOfBananas": [
{
"name": "Big Yellow",
"color": "YELLOW"
},
{
"name": "Old Brown",
"color": 2
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"numberOfFruit": 100,
"typesOfApples": [
{
"name": "Fuji",
"color": "RED"
},
{
"name": "Gala",
"color": "YELLOW"
}
],
"typesOfBananas": [
{
"name": "Big Yellow",
"color": "YELLOW"
},
{
"name": "Old Brown",
"color": "BROWN"
}
]
}

0 comments on commit e7f5cc7

Please sign in to comment.