Skip to content
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

ESLint Config Migration: Object property names enclosed with quotes require no naming convention #1051

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,16 @@ module.exports = {
match: false
},
},
{
// When defining properties on an object...
selector: 'objectLiteralProperty',
// ... do not enforce any particular format...
format: null,
// ... when the property name is enclosed in quotes
modifiers: ['requiresQuotes'],
// The above is useful for things like quoting HTTP header names
// i.e. { 'Content-Type': 'application/json' }
},
{
selector: 'variable',
// PascalCase for variables is added to allow exporting a singleton, function library, or bare object as in
Expand Down