Skip to content

Commit a8461e0

Browse files
committed
[eslint config] [fix] fix npm run lint
1 parent 6f1d928 commit a8461e0

File tree

1 file changed

+1
-1
lines changed
  • packages/eslint-config-airbnb/rules

1 file changed

+1
-1
lines changed

packages/eslint-config-airbnb/rules/style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = {
7676
// disallow the use of Boolean literals in conditional expressions
7777
// also, prefer `a || b` over `a ? a : b`
7878
// http://eslint.org/docs/rules/no-unneeded-ternary
79-
'no-unneeded-ternary': [2, { "defaultAssignment": false }],
79+
'no-unneeded-ternary': [2, { 'defaultAssignment': false }],
8080
// require padding inside curly braces
8181
'object-curly-spacing': [2, 'always'],
8282
// allow just one var statement per function

0 commit comments

Comments
 (0)