🔝 Top 4 Visual Studio Code Extensions for React Developers 👩💻
-
ES7 React/Redux/GraphQL/React-Native snippets
Publisher: dsznajder
Use React snippets to speed up your React game!
Install using Ctrl+P
ext install dsznajder.es7-react-js-snippetsSome useful snippets
imp➡import moduleName from 'module'imd➡import { destructuredModule } from 'module'rfce⬇
import React from 'react'function ComponentName() {
return (
<div></div>
)
}export default ComponentName
-
ESLint
Publisher: Dirk Baeumer
ESLint finds and fixes problems in JavaScript code. ESLint requires to be run from the command. This VSC extension checks your code on the fly. ESLint can fix code when the file is saved.
Install this extension using Ctrl+P
ext install dbaeumer.vscode-eslintInstall ESLint into your React project…
npm install eslint --save-devIf you used
npx create-react-app app-nameto create your react app then you are good to go with the basic React ESLint configuration as thepackage.jsonfile already has the ESlint configuration. Kullanımnpx eslint --initto create a .eslintrc file with alternate configurations..eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız.
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/react-in-jsx-scope": "off",
"react/jsx-one-expression-per-line": [0, { "allow": "literal" }] "no-unused-vars": [1, { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }]}
.eslintrc.json dosyası oluşturduysanız (Ctrl+, .eslintrc.json dosyası oluşturduysanız), .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız.
"files.eol": "\n",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
-
.eslintrc.json dosyası oluşturduysanız – .eslintrc.json dosyası oluşturduysanız
Publisher: .eslintrc.json dosyası oluşturduysanız
.eslintrc.json dosyası oluşturduysanız.
.eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız, HTML, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız.
.eslintrc.json dosyası oluşturduysanız. bu nedenle, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız, .eslintrc.json dosyası oluşturduysanız.
.eslintrc.json dosyası oluşturduysanız. .eslintrc.json dosyası oluşturduysanız.
Install this extension using Ctrl+P
ext install esbenp.prettier-vscode.eslintrc.json dosyası oluşturduysanız…
npm install --save-dev --save-exact prettier.eslintrc.json dosyası oluşturduysanız
.prettierrc.jsonfile to your React project root to create custom formatting rules.
{
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120
}
git Prettier site for more config. kurallar.
.eslintrc.json dosyası oluşturduysanız (Ctrl+, .eslintrc.json dosyası oluşturduysanız), to format on save, disable on JavaScript and React code.
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.disableLanguages": ["javascript", "javascriptreact"] -
Rainbow Brackets
Publisher: 2gua
Sets different colours to round, square and curly brackets. This allows you to easily visually match bracket pairs in your React code.
Install this extension using Ctrl+P
ext install 2gua.rainbow-brackets
