diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-09-20 09:11:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 09:11:29 +0100 |
commit | f42d44112d268588f0d25f81715d01190b7047ea (patch) | |
tree | cc5a7240650fd17bcca4a08c3bb3770f9cad7e69 /eslint/index.js | |
parent | 22410a3cee459761a9eb2d1a52de99557a424797 (diff) | |
download | voidsky-f42d44112d268588f0d25f81715d01190b7047ea.tar.zst |
Add eslint rule to fix imports without the `#/` path alias (#5175)
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 cf5d41225..6f75f1bc3 100644 --- a/eslint/index.js +++ b/eslint/index.js @@ -5,5 +5,6 @@ module.exports = { 'avoid-unwrapped-text': require('./avoid-unwrapped-text'), 'use-exact-imports': require('./use-exact-imports'), 'use-typed-gates': require('./use-typed-gates'), + 'use-prefixed-imports': require('./use-prefixed-imports'), }, } |