Skip to content

Instantly share code, notes, and snippets.

View petyappetrov's full-sized avatar
🏇
Work hard - play hard

Petr Petrov petyappetrov

🏇
Work hard - play hard
View GitHub Profile
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2016 Quantron Systems LLC.
// All Rights Reserved.
//
// This file is part of the Pakmil project.
// For conditions of distribution and use,
// please contact [email protected]
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@petyappetrov
petyappetrov / .stylelintrc.yaml
Last active June 13, 2016 02:21
stylelintrc
---
rules:
block-no-empty: true
# EditorConfig is awesome: http://EditorConfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
@petyappetrov
petyappetrov / eslintrc.yaml
Created April 20, 2016 16:37
eslintrc.yaml
---
extends: "eslint:recommended"
parserOptions:
ecmaVersion: 6
sourceType: "module"
ecmaFeatures:
arrowFunctions: true
binaryLiterals: false
blockBindings: true
classes: true
@petyappetrov
petyappetrov / .eslintrc
Last active April 5, 2016 11:21
eslintrc version 2
{
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": false,
"blockBindings": true,
@petyappetrov
petyappetrov / .editorconfig
Created February 28, 2016 16:43
.editorconfig
[*]
charset = utf-8
indent_style = space
indent_size = 4
[*.{css,styl,jade,html}]
indent_style = space
indent_size = 4