Skip to content

Instantly share code, notes, and snippets.

View Sergih28's full-sized avatar
🎯
Focusing

Sergi Sergih28

🎯
Focusing
View GitHub Profile
@Sergih28
Sergih28 / .eslintrc.json
Created August 4, 2021 09:45
eslint config
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
@Sergih28
Sergih28 / .stylelintrc.json
Created August 4, 2021 09:34
stylelint config
{
"extends": "stylelint-config-sass-guidelines",
"plugins": ["stylelint-order"],
"rules": {
"indentation": 4,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"string-quotes": "single",
"color-hex-length": "long",
"selector-max-id": 2,
@Sergih28
Sergih28 / .prettierrc.json
Created August 4, 2021 09:24
prettier config
{
"printWidth": 100,
"bracketSpacing": true,
"arrowParens": "always",
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"quoteProps": "preserve",
"jsxSingleQuote": true