Skip to content

Instantly share code, notes, and snippets.

View veremey's full-sized avatar
:electron:

Serhii Veremiichuk veremey

:electron:
  • Germany
View GitHub Profile
@veremey
veremey / .stylelintrc
Created May 27, 2022 18:01
.stylelintrc
{
"extends": [
"stylelint-config-rational-order",
"stylelint-config-recommended",
"stylelint-config-recommended-scss"
],
"plugins": ["stylelint-order", "stylelint-scss"],
"rules": {
"no-descending-specificity": null,
"number-leading-zero": "never",
@veremey
veremey / .prettierrc
Created May 27, 2022 18:02
.prettierrc
{
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
@veremey
veremey / .eslintrc
Last active May 28, 2022 09:20
.eslintrc
module.exports = {
parser: 'babel-eslint',
extends: ['airbnb-base', 'plugin:jest/recommended', 'react-app', 'plugin:css-import-order/recommended'],
plugins: ['prefer-arrow', 'unicorn', 'css-import-order'],
rules: {
'no-var': 0,
indent: [1, 4, { SwitchCase: 1 }],
'no-multi-spaces': 1,
'no-confusing-arrow': 'off',
'no-unused-vars': [
@veremey
veremey / composer-install.sh
Created May 30, 2024 18:03 — forked from kenng/composer-install.sh
Installing composer using curl
# Goto a directory you can write to:
cd ~
#get composer:
curl -s https://getcomposer.org/installer | php
# move composer into a bin directory you control:
sudo mv composer.phar /usr/local/bin/composer
# double check composer works
composer about
@veremey
veremey / composer-install.sh
Created May 30, 2024 18:03 — forked from kenng/composer-install.sh
Installing composer using curl
# Goto a directory you can write to:
cd ~
#get composer:
curl -s https://getcomposer.org/installer | php
# move composer into a bin directory you control:
sudo mv composer.phar /usr/local/bin/composer
# double check composer works
composer about