diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-11-23 22:08:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 22:08:30 -0500 |
commit | d454b52a18127f782fafdf71534ea2c41f20ef44 (patch) | |
tree | baa980dbd94d624d44bac2df3d691fb759d8300d /.eslintrc.json | |
parent | ecc994a8bbd52a426434a549f8e3e68eba6e786e (diff) |
Google Docs accessibility refactor (#2023)
* Skip urlRegex if it's used as a filter
* Add getRequiredContentScriptRegistrationPermissions function
* Add a reentrant check to google-docs.js
* Remove script node
* Move forceGoogleDocsHtmlRendering check into google-docs.js
* Replace document-start.js usage with google-docs.js
* Remove documentStart handling
* Add missing parameter descriptions
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index bfc9c3d2..a1e47ef1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -120,7 +120,7 @@ "files": ["ext/**/*.js"], "excludedFiles": [ "ext/js/core.js", - "ext/js/document-start.js", + "ext/js/accessibility/google-docs.js", "ext/js/**/sandbox/**/*.js" ], "globals": { @@ -147,7 +147,7 @@ "files": ["ext/**/*.js"], "excludedFiles": [ "ext/js/core.js", - "ext/js/document-start.js", + "ext/js/accessibility/google-docs.js", "ext/js/yomichan.js", "ext/js/**/sandbox/**/*.js" ], |