Skip to content

Instantly share code, notes, and snippets.

View mejarc's full-sized avatar

M. Archer mejarc

  • Oakland, CA, USA
View GitHub Profile
@mejarc
mejarc / README-template.md
Created January 25, 2015 23:11
README template

name of app

Developed by [Melanie Archer](link to repo).

Description of app...

Installation

clone, download, serve

@mejarc
mejarc / .jshintrc
Last active January 27, 2016 21:55
template-jshintrc
// based on jQuery Core & Elijah Manor (http://www.elijahmanor.com/control-the-complexity-of-your-javascript-functions-with-jshint/)
{
"globals": {
"console": false,
"jQuery": false,
"_": false
},
"maxparams": 5,
"maxdepth": 5,
"maxstatements": 25,
@mejarc
mejarc / .eslintrc
Created June 15, 2015 02:53
ESLint config
{
"env": {
"node": true,
"jquery": true,
"browser": true
},
"ecmaFeatures": {},
"globals": {},
"plugins": [
"eslint-plugin-smells"