You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/12/07 21:51:18 UTC

(superset) branch reduce-innerHTML-use updated: Wave 2 - no problems!

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch reduce-innerHTML-use
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/reduce-innerHTML-use by this push:
     new 4b08bf6a1c Wave 2 - no problems!
4b08bf6a1c is described below

commit 4b08bf6a1c57fb12d84631ee7fc70c5a6caafaa6
Author: Evan Rusackas <ev...@rusackas.com>
AuthorDate: Thu Dec 7 14:51:10 2023 -0700

    Wave 2 - no problems!
---
 superset-frontend/spec/javascripts/dashboard/.eslintrc | 2 +-
 superset-websocket/.eslintrc.js                        | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/superset-frontend/spec/javascripts/dashboard/.eslintrc b/superset-frontend/spec/javascripts/dashboard/.eslintrc
index 7a8a576a8c..190e79f21e 100644
--- a/superset-frontend/spec/javascripts/dashboard/.eslintrc
+++ b/superset-frontend/spec/javascripts/dashboard/.eslintrc
@@ -1,5 +1,5 @@
 {
-  "extends": "prettier",
+"extends": ["prettier","plugin:no-unsanitized/DOM"],
   "plugins": ["prettier"],
   "rules": {
     "prefer-template": 2,
diff --git a/superset-websocket/.eslintrc.js b/superset-websocket/.eslintrc.js
index f1aaa4512c..c802713a61 100644
--- a/superset-websocket/.eslintrc.js
+++ b/superset-websocket/.eslintrc.js
@@ -30,6 +30,7 @@ module.exports = {
     'eslint:recommended',
     'plugin:@typescript-eslint/recommended',
     'prettier',
+    'plugin:no-unsanitized/DOM',
   ],
   rules: {
     "@typescript-eslint/explicit-module-boundary-types": 0,