-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Conversation
Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
I'm sorry, but I wasn't able to verify your Contributor License Agreement (CLA) signature. CLA signature is required for any code contributions to AngularJS. Please sign our CLA and ensure that the CLA signature email address and the email address in this PR's commits match. If you signed the CLA as a corporation, please let us know the company's name. Thanks a bunch! PS: If you signed the CLA in the past then most likely the email addresses don't match. Please sign the CLA again or update the email address in the commit of this PR. |
Hi, I remember this was proposed a while ago, and the question that came up is still relevant: what does this add over complete jshint coverage? And why did you exclude some files from |
@Narretz Differences between JSHint and EditorConfig
I removed final newline requirement from I removed the final newline requirement from |
CLA signature verified! Thank you! Someone from the team will now triage your PR and it will be processed based on the determined priority (doc updates and fixes with tests are prioritized over other changes). |
we use jscs to enforce style rules |
@caitp jscs is great as an opinionated JavaScript checker but it:
These two tools go hand-in-hand. jscs is a highly opinionated JS-specific linter and EditorConfig is a file format enforcer (working within your text editor) that works on all text files. Note that the jscs developers use a |
+1 for merging it. As @treyhunner says it is just a convenience for an editor so it gets "right" formatting without any need to change editor's settings (apart from installing a plugin that supports editorconfig...) |
This can only make it easier for people to make changes to the code in a way that we want them to. we should merge this in. |
Request Type: feature
How to reproduce:
Component(s):
Impact:
Complexity: small
This issue is related to:
Detailed Description:
Other Comments:
This file acts as a living style guide. With an EditorConfig plugin installed, this file acts as a self-enforcing style guide.
See http://editorconfig.org for more details.
This should reduce problems such as the one in #8277.
Disclaimer: I'm one of the EditorConfig project team members.