We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I propose enabling the symbol-description rule.
symbol-description
Example of incorrect code:
var foo = Symbol()
Examples of correct code:
var foo = Symbol('some description') var someString = 'some description' var bar = Symbol(someString)
http://eslint.org/docs/rules/symbol-description
The text was updated successfully, but these errors were encountered:
No ecosystem impact:
# tests 422 # pass 422
Sorry, something went wrong.
Require Symbols have descriptions (symbol-description)
25d3fc2
Fixes: standard/standard#630
This will be part of standard v9.
f71b732
No branches or pull requests
I propose enabling the
symbol-description
rule.Example of incorrect code:
Examples of correct code:
http://eslint.org/docs/rules/symbol-description
The text was updated successfully, but these errors were encountered: