diff options
author | dan <dan.abramov@gmail.com> | 2024-06-18 15:37:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 15:37:08 +0300 |
commit | e30575c0dc3b2d81694a8a08543c6348e0c27322 (patch) | |
tree | 7cc8b19e29a7aeefd98d574fd984c8154009324b /eslint/index.js | |
parent | e6213d7aa56faa6994a27bf127c63ded69e67d6f (diff) | |
download | voidsky-e30575c0dc3b2d81694a8a08543c6348e0c27322.tar.zst |
Use exact imports for icons (#4549)
* Use exact imports for icons * Add a lint rule
Diffstat (limited to 'eslint/index.js')
-rw-r--r-- | eslint/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eslint/index.js b/eslint/index.js index 955103d8c..cb6291d79 100644 --- a/eslint/index.js +++ b/eslint/index.js @@ -4,6 +4,7 @@ module.exports = { rules: { 'keep-i18n-patch-in-sync': require('./keep-i18n-patch-in-sync'), 'avoid-unwrapped-text': require('./avoid-unwrapped-text'), + 'use-exact-imports': require('./use-exact-imports'), 'use-typed-gates': require('./use-typed-gates'), }, } |