This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch disable-antd-imports in repository https://gitbox.apache.org/repos/asf/superset.git
commit a9bc662185a8a20ecf432443f2a7638cdf7aad18 Author: Evan Rusackas <[email protected]> AuthorDate: Wed Jan 22 17:00:15 2025 -0700 chore(build): enforce eslint rule banning antd imports outside of core components. --- superset-frontend/.eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/.eslintrc.js b/superset-frontend/.eslintrc.js index d2ed09e69e..18a7851779 100644 --- a/superset-frontend/.eslintrc.js +++ b/superset-frontend/.eslintrc.js @@ -331,7 +331,7 @@ module.exports = { 'no-prototype-builtins': 0, 'no-restricted-properties': 0, 'no-restricted-imports': [ - 'warn', + 'error', { paths: [ {
