第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

ESLint 和lookbehind 斷言

ESLint 和lookbehind 斷言

我有一個(gè)正則表達(dá)式,其中包含 ESLint 似乎不認(rèn)為有效的后向斷言。然而,前瞻斷言是可以的。我可以使用最新版本的 ESLint(我使用過(guò)在線演示)以及非常簡(jiǎn)單且人為的示例來(lái)重現(xiàn)此問(wèn)題。前瞻斷言:匹配b(且僅b)如果后跟d:'bd'.match(/b(?=d)/) //=> ['b'] 'be'.match(/b(?=d)/) //=> nullESLint 識(shí)別/b(?=d)/為有效的正則表達(dá)式:Lookbehind 斷言:匹配b(且僅b)如果前面是a:'ab'.match(/(?<=a)b/) //=> ['b'] 'eb'.match(/(?<=a)b/) //=> nullESLint 無(wú)法識(shí)別/(?<=a)b/為有效的正則表達(dá)式:?jiǎn)栴}:我的正則表達(dá)式有什么問(wèn)題導(dǎo)致 ESLint 抱怨?上面演示中使用的 ESLint 配置:{    "parserOptions": {        "ecmaVersion": 5,        "sourceType": "script",        "ecmaFeatures": {}    },    "rules": {        "constructor-super": 2,        "for-direction": 2,        "getter-return": 2,        "no-async-promise-executor": 2,        "no-case-declarations": 2,        "no-class-assign": 2,        "no-compare-neg-zero": 2,        "no-cond-assign": 2,        "no-const-assign": 2,        "no-constant-condition": 2,        "no-control-regex": 2,        "no-debugger": 2,        "no-delete-var": 2,        "no-dupe-args": 2,        "no-dupe-class-members": 2,        "no-dupe-else-if": 2,        "no-dupe-keys": 2,        "no-duplicate-case": 2,        "no-empty": 2,        "no-empty-character-class": 2,        "no-empty-pattern": 2,        "no-ex-assign": 2,        "no-extra-boolean-cast": 2,        "no-extra-semi": 2,        "no-fallthrough": 2,        "no-func-assign": 2,        "no-global-assign": 2,        "no-import-assign": 2,        "no-inner-declarations": 2,        "no-invalid-regexp": 2,        "no-irregular-whitespace": 2,        "no-misleading-character-class": 2,        "no-mixed-spaces-and-tabs": 2,        "no-new-symbol": 2,        "no-obj-calls": 2,        "no-octal": 2,        "no-prototype-builtins": 2,        "no-redeclare": 2,        "no-regex-spaces": 2,        "no-self-assign": 2,        "no-setter-return": 2,        "no-shadow-restricted-names": 2,        "no-sparse-arrays": 2,        "no-this-before-super": 2,        "no-undef": 2,    },    "env": {}}javascript正則表達(dá)式埃斯林特
查看完整描述

1 回答

?
qq_花開(kāi)花謝_0

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以參考指定解析器選項(xiàng)

ecmaVersion- 設(shè)置為 3、5(默認(rèn))、6、7、8、9、10、11 或 12 以指定要使用的 ECMAScript 語(yǔ)法版本。您還可以設(shè)置為 2015 年(與 6 相同)、2016 年(與 7 相同)、2017 年(與 8 相同)、2018 年(與 9 相同)、2019 年(與 10 相同)、2020 年(與 11 相同)或 2021 年(與 12) 相同,使用基于年份的命名。

如您所見(jiàn),默認(rèn)值為5,表示僅支持 ES5。Lookbehinds符合 ECMAScript 2018,因此您需要確保ecmaVersion至少設(shè)置為9

"parserOptions": {

? ? ? ? "ecmaVersion": 9,

? ? ? ? "sourceType": "script",

? ? ? ? "ecmaFeatures": {}

? ? },


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 188 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)