Skip to content

Commit

Permalink
fix: Turn off unicorn/import-style
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Dec 30, 2024
1 parent c344d8a commit f3be043
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eslint/rules/javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ export const javascript = [
// https://github.com/sindresorhus/eslint-plugin-unicorn/issues/896
"unicorn/prevent-abbreviations": "off",
"unicorn/filename-case": "off",
// The default of import-style is highly subjective and not always the best choice.
// E.g. bundlers are able to tree-shake named imports easier than default imports.
"unicorn/import-style": "off",
"unicorn/no-nested-ternary": "off",
"unicorn/no-null": "off",
"unicorn/no-useless-undefined": "off",
Expand Down

0 comments on commit f3be043

Please sign in to comment.