Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign updef.split is not a function #1047
Comments
standard
deleted a comment
Jan 26, 2018
standard
deleted a comment
Jan 26, 2018
This comment has been minimized.
This comment has been minimized.
|
(removed some spam) |
This comment has been minimized.
This comment has been minimized.
catdaddy23
commented
Jan 26, 2018
|
Thanks for the removal |
This comment has been minimized.
This comment has been minimized.
|
@emnloc can you provide a file that triggers the problem? |
This comment has been minimized.
This comment has been minimized.
TeffenEllis
commented
Jan 31, 2018
|
This seems to be an error with the change to the package.json global declaration: {
"standard": {
"globals": {
"foo": true,
"bar": true
}
}
}This can be fixed with an array instead: {
"standard": {
"globals": [
"foo",
"bar"
]
}
}Given how many existing setups there are, can we keep support for the old format? Cheers |
This comment has been minimized.
This comment has been minimized.
|
@bcomnes @TeffenEllis I changed my package.json and it works now but I agree about the idea of keep support for the old format |
This comment has been minimized.
This comment has been minimized.
|
I don't think we explicitly changed this ourselves (unless I'm forgetting). This probably happened in an update to ESLint. It seems like a sufficiently niche issue that I'm not going to worry about it. |
emnloc commentedJan 22, 2018
Unexpectedly standard stop to work
Any idea?