summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-11-22 14:17:22 -0500
committercjihrig <cjihrig@gmail.com>2019-11-25 11:55:40 -0500
commit90fb308de42575adeed82d864da57148049185b3 (patch)
tree79d362bf7f18f1088da78b8b3073252b059b7c3f /tools/node_modules/eslint/lib/rules/computed-property-spacing.js
parent02d4c742369975fd7499bb242be61bbb1f8fc1ab (diff)
downloadandroid-node-v8-90fb308de42575adeed82d864da57148049185b3.tar.gz
android-node-v8-90fb308de42575adeed82d864da57148049185b3.tar.bz2
android-node-v8-90fb308de42575adeed82d864da57148049185b3.zip
tools: update ESLint to 6.7.1
Update ESLint to 6.7.1 PR-URL: https://github.com/nodejs/node/pull/30598 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/computed-property-spacing.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/computed-property-spacing.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
index bc8be964f4..a0bd7f48ce 100644
--- a/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
+++ b/tools/node_modules/eslint/lib/rules/computed-property-spacing.js
@@ -153,10 +153,10 @@ module.exports = {
const property = node[propertyName];
- const before = sourceCode.getTokenBefore(property),
- first = sourceCode.getFirstToken(property),
- last = sourceCode.getLastToken(property),
- after = sourceCode.getTokenAfter(property);
+ const before = sourceCode.getTokenBefore(property, astUtils.isOpeningBracketToken),
+ first = sourceCode.getTokenAfter(before, { includeComments: true }),
+ after = sourceCode.getTokenAfter(property, astUtils.isClosingBracketToken),
+ last = sourceCode.getTokenBefore(after, { includeComments: true });
if (astUtils.isTokenOnSameLine(before, first)) {
if (propertyNameMustBeSpaced) {