Skip to content

Instantly share code, notes, and snippets.

[
{
"name": "DEV",
"variables": [
{
"key": "URL",
"value": "http://localhost:3000"
}
]
},
@ipiranhaa
ipiranhaa / .eslintrc
Last active October 10, 2022 04:23
The ESlint configuration for React project
{
"env": {
"es6": true,
"browser": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
@ipiranhaa
ipiranhaa / .prettierrc
Created October 10, 2022 03:12
The Prettier configuration template
{
"arrowParens": "always",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"semi": false
}