-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Consider adding test specific rules to avoid adding this at top of every test file: /* eslint import/no-extraneous-dependencies: 0 */
http://eslint.org/docs/user-guide/configuring#relative-glob-patterns
https://stackoverflow.com/questions/32520674/make-eslint-apply-rules-to-only-certain-file-name-patterns
eslint/eslint#3611
"overrides": [
{
"files": [ "bin/*.js", "lib/*.js" ],
"excludedFiles": "*.test.js",
"rules": {
"quotes": [ 2, "single" ]
}
}
]ctsstc and chaimleib