Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Express.js ontop of Node.js to create RESTful API, and using grunt to watch my files and automatically lint my JavaScript.

Every time I use the delete function, it gets flagged by JSHint:

[L218:C9] Expected an identifier and instead saw 'delete' (a reserved word).
app.delete('/api/users/:userid', function deleteUser(req, res, next) {

I understand that 'delete' is a reserved word, but it's chosen by Express.js! Is there a better way to go about linting my Express.js app? Any way to turn off this check??

share|improve this question
Doing a quick search I believe you can use es5 option for that. – Alfred Jul 11 '12 at 18:10

2 Answers

up vote 5 down vote accepted

In Express.js, use del instead of delete.

app.del('/api/users/:userid', function deleteUser(req, res, next)
share|improve this answer
Awesome! Thanks! :-D – Eric the Red Jul 10 '12 at 19:33

You can set the es5 option for jshint, and it will allow you to use reserved words as properties per the ES5 specification. For more info you can head over to http://www.jshint.com/docs/#options

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.