gitextract_ro1iws4k/ ├── .github/ │ └── workflows/ │ ├── linting.yml │ └── main.yml ├── .gitignore ├── .hound.yml ├── .markdownlint-cli2.jsonc ├── .tool-versions ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── _template/ │ ├── README.md │ └── how-to/ │ ├── do-something-else.md │ └── do-something.md ├── accessibility/ │ └── README.md ├── android/ │ ├── README.md │ └── android_layout.xml ├── bash/ │ └── README.md ├── code-review/ │ └── README.md ├── css/ │ └── README.md ├── data/ │ └── README.md ├── email/ │ └── README.md ├── erb/ │ ├── README.md │ └── sample.html.erb ├── general/ │ └── README.md ├── git/ │ └── README.md ├── graphql/ │ └── README.md ├── html/ │ └── README.md ├── ios/ │ └── README.md ├── javascript-typescript/ │ ├── .eslintrc.json │ ├── README.md │ └── sample.js ├── lefthook.yml ├── mise.toml ├── object-oriented-design/ │ └── README.md ├── open-source/ │ └── README.md ├── package.json ├── postgres/ │ └── README.md ├── product-review/ │ └── README.md ├── python/ │ └── README.md ├── rails/ │ ├── README.md │ ├── ai-rules/ │ │ ├── CLAUDE.md │ │ └── rules/ │ │ ├── controllers.md │ │ ├── database.md │ │ ├── models.md │ │ ├── security.md │ │ ├── testing.md │ │ └── views.md │ ├── how-to/ │ │ ├── deploy_a_rails_app_to_heroku.md │ │ ├── feature_test_javascript_in_a_rails_app.md │ │ ├── seed-data.md │ │ └── start_a_new_rails_app.md │ ├── migration.rb │ └── sample.rb ├── react/ │ └── README.md ├── react-native/ │ └── README.md ├── relational-databases/ │ └── README.md ├── ruby/ │ ├── .rubocop.yml │ ├── Limit-use-of-conditional-modifiers-to-short-simple-cases.md │ ├── README.md │ ├── Use-an-opinionated-set-of-rules-for-Rubocop.md │ ├── how-to/ │ │ └── release_a_ruby_gem.md │ ├── sample_1.rb │ └── sample_2.rb ├── sass/ │ ├── .stylelintrc.json │ ├── README.md │ └── sample.scss ├── security/ │ ├── README.md │ ├── application.md │ └── protecting-personal-or-identifying-information.md ├── shell/ │ └── README.md ├── swift/ │ ├── README.md │ └── sample.swift ├── tech-stack/ │ └── README.md ├── testing-jest/ │ └── README.md ├── testing-rspec/ │ ├── README.md │ ├── acceptance_test_spec.rb │ ├── avoid_let_spec.rb │ ├── predicate_tests_spec.rb │ └── unit_test_spec.rb ├── web/ │ └── README.md └── web-performance/ └── README.md