├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement-request.md │ └── hardcoded-app.md └── PULL_REQUEST_TEMPLATE.md ├── fix.sh ├── license ├── readme.md └── tofix.csv /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hardcoded-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/ISSUE_TEMPLATE/hardcoded-app.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/fix.sh -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/readme.md -------------------------------------------------------------------------------- /tofix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foggalong/hardcode-fixer/HEAD/tofix.csv --------------------------------------------------------------------------------