Last active
September 28, 2018 12:50
-
-
Save codetricity/f40c2c69edd512affa379927f2463380 to your computer and use it in GitHub Desktop.
eslintrc for d3 lessons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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