Skip to content

Instantly share code, notes, and snippets.

View veremey's full-sized avatar
:electron:

Serhii Veremiichuk veremey

:electron:
  • Ukraine
View GitHub Profile
@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 / .prettierrc
Created May 27, 2022 18:02
.prettierrc
{
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
@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",
<div id="map"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=KEY_NUMBER" ></script>
function initMap() {
var myLatLng = {lat: 41.892896, lng: -87.638387};
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 41.892896, lng: -87.638387},
zoom: 15,
styles: [
@veremey
veremey / gist:29fbedb0f0fd7d70b69c4f34ebbce6c5
Created October 16, 2018 08:55 — forked from itsmattsoria/gistfil1.textile
Mac Terminal Cheat Sheet

SHORTCUTS

Key/Command Description
Tab Auto-complete files and folder names
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + U Clear the line before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + W Delete the word before the cursor
Ctrl + T Swap the last two characters before the cursor
@veremey
veremey / gist:8aabccb784f97996e244f14ef09ffeab
Last active January 14, 2020 15:22
Работа с видео
https://videojs.com/advanced/ - ратает на тел
https://www.npmjs.com/package/iphone-inline-video - работает на тел
@veremey
veremey / gist:a1593b7758146203051f2077d586c2ad
Created February 23, 2017 16:27 — forked from depoulo/gist:5832073
CSS-only multi-line ellipsis with generated content. License: http://www.wtfpl.net/txt/copying/
@import "compass/css3/images";
// CSS-only multi-line ellipsis with generated content
// yields `position:relative`, so remember to declare an eventual `position:absolute/fixed` *after* including this mixin
@mixin limitLines(
$maxLinesPortrait, // Mandatory: The number of lines after which the clipping should take action.
$maxLinesLandscape: $maxLinesPortrait, // You may provide a different line limit for landscape orientation.
// Note that 'portrait' is our default orientation. However, if you omit $maxLinesLandscape,
// the value of $maxLinesPortrait is used for whatever orientation (that is, without a media query).
@veremey
veremey / Настройки верстальщику
Last active June 19, 2023 09:09
Настройки верстальщику
###