diff options
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 66e75d485..ac50d978f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -42,9 +42,9 @@ module.exports = { ], 'bsky-internal/use-exact-imports': 'error', 'bsky-internal/use-typed-gates': 'error', - 'bsky-internal/use-prefixed-imports': 'warn', + 'bsky-internal/use-prefixed-imports': 'error', 'simple-import-sort/imports': [ - 'warn', + 'error', { groups: [ // Side effect imports. @@ -78,7 +78,7 @@ module.exports = { ], }, ], - 'simple-import-sort/exports': 'warn', + 'simple-import-sort/exports': 'error', // TODO: Reenable when we figure out why it gets stuck on CI. // 'react-compiler/react-compiler': 'error', 'no-restricted-imports': [ |