├── .DS_Store ├── .github ├── FUNDING.yml └── workflows │ ├── pull_request_validation.yml │ └── validate_pr.py ├── .vs └── slnx.sqlite ├── CONTRIBUTING.md └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/.github/workflows/pull_request_validation.yml -------------------------------------------------------------------------------- /.github/workflows/validate_pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/.github/workflows/validate_pr.py -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisolanki/Welcome-to-Open-Source/HEAD/README.md --------------------------------------------------------------------------------