├── .github └── workflows │ ├── markdown-link-check.json │ └── markdown-link-check.yml ├── .prettierrc └── README.md /.github/workflows/markdown-link-check.json: -------------------------------------------------------------------------------- 1 | { 2 | "aliveStatusCodes": [0, 200] 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/markdown-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/programming-principles/HEAD/.github/workflows/markdown-link-check.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "always" 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alidehkhodaei/programming-principles/HEAD/README.md --------------------------------------------------------------------------------