This repository was archived by the owner on Nov 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 45
Wrong configuration is being used #90
Copy link
Copy link
Open
Description
Somehow, I'm seeing some configuration options applied during testing that shouldn't be applied.
I have a bunch of tests failing due to the comma-dangle rule being applied.
not ok 8 PhantomJS 2.1 - ESLint - acceptance/_checkout-test.js should pass ESLint
---
message: >
acceptance/_checkout-test.js should pass ESLint.
162:34 - Unexpected trailing comma. (comma-dangle)
230:36 - Unexpected trailing comma. (comma-dangle)
Log: |
...
However, as far as I can tell from the command line, that rule is "off".
$ eslint --print-config app | grep comma
"comma-dangle": "off",
"comma-spacing": "off",
"comma-style": "off",
$ eslint --print-config tests | grep comma
"comma-dangle": "off",
"comma-spacing": "off",
"comma-style": "off",If I run eslint from the command line none of the files fail, nor to they fail from ESLint being run through my editor. That property must be turned on from somewhere, but I just can't tell where.
Metadata
Metadata
Assignees
Labels
No labels