Skip to content

Instantly share code, notes, and snippets.

@codetricity
Last active September 28, 2018 12:50
Show Gist options
  • Select an option

  • Save codetricity/f40c2c69edd512affa379927f2463380 to your computer and use it in GitHub Desktop.

Select an option

Save codetricity/f40c2c69edd512affa379927f2463380 to your computer and use it in GitHub Desktop.
eslintrc for d3 lessons
module.exports = {
"extends": "airbnb-base",
"env": {
"browser": true,
"es6": true
},
"rules": {
"object-curly-newline": ["error", {multiline: true}],
"no-plusplus": ["error", {allowForLoopAfterthoughts: true}],
"no-use-before-define": ["off"],
"linebreak-style":["off"] // do not report windows CRLF errors
},
"globals": {
"d3": false
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment