Skip to content

Instantly share code, notes, and snippets.

@mast4461
mast4461 / .eslintrc.yml
Last active November 17, 2016 14:32 — forked from ghostwords/.eslintrc
YAML configuration for ESLint that turns off all* rules. Good starting point. *supposedly at least at the time of last update of the original gist
--- # Disable all rules. Rules at http://eslint.org/docs/rules/
ecmaFeatures:
arrowFunctions: false # enable arrow functions
binaryLiterals: false # enable binary literals
blockBindings: false # enable let and const (aka block bindings)
classes: false # enable classes
defaultParams: false # enable default function parameters
destructuring: false # enable destructuring
forOf: false # enable for-of loops