Skip to content

Instantly share code, notes, and snippets.

View tarikulwebx's full-sized avatar
🚀
Building the future, one commit at a time 🚀

Md. Tarikul Islam tarikulwebx

🚀
Building the future, one commit at a time 🚀
View GitHub Profile
@tarikulwebx
tarikulwebx / Larave_github_project_run_on_local_machine.md
Last active January 4, 2023 09:36
Run Laravel project locally from Github

Setup XAMPP/WAPM:

Follow the next processes:

@tarikulwebx
tarikulwebx / .prettierrc.cjs
Last active July 17, 2024 01:34
Required Prettier Configuration for React App
module.exports = {
printWidth: 120, // max 120 chars in line, code is easy to read
useTabs: false, // use spaces instead of tabs
tabWidth: 4, // "visual width" of of the "tab"
trailingComma: 'es5', // add trailing commas in objects, arrays, etc.
semi: true, // add ; when needed
singleQuote: true, // '' for stings instead of ""
bracketSpacing: true, // import { some } ... instead of import {some} ...
arrowParens: 'always', // braces even for single param in arrow functions (a) => { }
jsxSingleQuote: false, // "" for react props, like in html