Skip to content

Instantly share code, notes, and snippets.

View caweidmann's full-sized avatar

Cornelius caweidmann

View GitHub Profile
@caweidmann
caweidmann / .eslintrc
Last active May 31, 2016 05:21
The "C-Dawg linter". A comprehensive eslintrc file that implements best practices and strict coding standards.
{
"env": {
"browser": true,
},
"globals": {
"jQuery": false,
"$": false,
"_": false
},
"rules": {
@caweidmann
caweidmann / eslintrc.js
Last active January 26, 2024 20:19
The "C-Dawg linter" annotation.
/*
**
** kyco.eslintrc
** =============
**
** Based on http://eslint.org/docs/rules/
**
** All rules specified in this file are taken from the URL above. We have
** included every single rule except for rules posted under the "Removed"
** section.