-
Notifications
You must be signed in to change notification settings - Fork 5.3k
replaces jscs with eslint #1942
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. jQuery projects are not supposed to use this preset but the jQuery one. This is to me a prerequisite to the migration, we can't migrate to a preset that doesn't verify rules jQuery cares about. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. which preset would you recommend then? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The official jQuery one: https://www.npmjs.com/package/eslint-config-jquery |
||
"env": { | ||
"amd": true, | ||
"browser": true | ||
}, | ||
"globals": { | ||
"jQuery": true, | ||
"process": true, | ||
"module": true, | ||
"Buffer": true, | ||
"Globalize": true | ||
}, | ||
"rules": { | ||
"no-constant-condition": 1, | ||
"no-control-regex": 0, | ||
"no-empty": 1, | ||
"no-mixed-spaces-and-tabs": 1, | ||
"no-redeclare": 0, | ||
"no-shadow-restricted-names": 1, | ||
"no-unexpected-multiline": 1, | ||
"no-useless-escape": 1 | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't follow the jQuery code style with regards to spacing; doesn't ESLint verify it?