In the section, we are going to see the necessary things to make sure before you start a react project. We are not going to do any changes in react, instead, we will focus on stuff that needs to be done before that.
You can consider this section as a to-do list for setting up a react project.
We are going to use VS Code in our case
What is React?
React is an open-source JavaScript library for building user interfaces which were created by Jordan Walk and maintained by Facebook and a community of individual developers and companies.
Why Create React App?
Create React App (CRA) is an officially and easiest way to get started building React applications.
Quick Start
npx create-react-app demo
code demo
ESLint
ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.
Install ESLint in your code editor.
Create a .eslintrc
file in the root directory of the project.
{
"extends": ["react-app", "plugin:jsx-a11y/strict"]
}
EditorConfig
Why EditorConfig?
EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.
Install EditorConfig in your code editor.
Create a .editorconfig
file in the root directory of the project.
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0
Prettier
Prettier is a code formatter.
Add Prettier to your editor.
Create a .prettierrc
file in the root directory of the project.
{
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true
}
Add or remove rules according to your convenience
Go to VS Code Setting
Search for "Editor: Formate On Save"
and make sure you check the box to formate the code when you save the file.
If you are in the middle of the project and the codes are not formatted well you can do then as well.
npx prettier --write "src/**/*.{js,jsx,json,css,scss,md}"
Checklist
- ESLint
- EditorConfig
- Prettier
Resources
Thanks for reading!
Top comments (0)