Skip to content

Instantly share code, notes, and snippets.

View vitkon's full-sized avatar
🎨
Building accessible UIs

Vitaly Kondratiev vitkon

🎨
Building accessible UIs
View GitHub Profile
@vitkon
vitkon / .jshintrc
Created August 7, 2013 23:29 — forked from haschek/.jshintrc
{
// --------------------------------------------------------------------
// JSHint Configuration, Strict Edition
// --------------------------------------------------------------------
//
// This is a options template for [JSHint][1], using [JSHint example][2]
// and [Ory Band's example][3] as basis and setting config values to
// be most strict:
//
// * set all enforcing options to true
{
/*
Sets the mode in which SublimeLinter runs:
true - Linting occurs in the background as you type (the default).
false - Linting only occurs when you initiate it.
"load-save" - Linting occurs only when a file is loaded and saved.
*/
"sublimelinter": true,
<h3>Choose a building</h3>
Current building: {{currentBuilding.name}}
<select>
{{#each buildings}}
<option value="{{_id}}" selected={{equals _id currentBuilding._id}}>{{name}}</option>
{{/each}}
</select>
@vitkon
vitkon / tslint.json
Created March 21, 2017 13:34 — forked from piotrwitek/tslint.json
TSLint rules with ESLint/React extension based on airbnb style guide
{
"rules": {
"align": [
true,
"parameters",
"arguments",
"statements"
],
"ban": false,
"class-name": true,
@vitkon
vitkon / travis.yml
Last active December 22, 2017 18:59 — forked from pranavrajs/travis.yml
Travis Config to deploy Frontend to S3 , Invalidate Cache
sudo: required
dist: trusty
language: node_js
node_js:
- "6.9.0"
python:
- "3.5"
cache:
- pip
- yarn