aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-05-31 11:09:22 +0200
committerGitHub <[email protected]>2024-05-31 11:09:22 +0200
commita082ed2555a2d339e1342ebf03145ee6bd3cc7b5 (patch)
tree16fbd7171148009a1564bfe024fe847c3b4055b2
parent9daff544930fb34c75dec6d03087e21be7446d90 (diff)
downloadfaker-a082ed2555a2d339e1342ebf03145ee6bd3cc7b5.tar.xz
faker-a082ed2555a2d339e1342ebf03145ee6bd3cc7b5.zip
infra(unicorn): import-style (#2901)
-rw-r--r--.eslintrc.cjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc.cjs b/.eslintrc.cjs
index cf0f611c..46f74f11 100644
--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
@@ -39,6 +39,7 @@ module.exports = defineConfig({
'prefer-exponentiation-operator': 'error',
'prefer-template': 'error',
+ 'unicorn/import-style': 'off', // subjective & doesn't do anything for us
'unicorn/no-array-callback-reference': 'off', // reduces readability
'unicorn/no-nested-ternary': 'off', // incompatible with prettier
'unicorn/no-null': 'off', // incompatible with TypeScript
@@ -50,7 +51,6 @@ module.exports = defineConfig({
// Each rule should be checked whether it should be enabled/configured and the problems fixed, or stay disabled permanently.
'unicorn/better-regex': 'off',
'unicorn/consistent-function-scoping': 'off',
- 'unicorn/import-style': 'off',
'unicorn/no-object-as-default-parameter': 'off',
'unicorn/numeric-separators-style': 'off',
'unicorn/prefer-export-from': 'off',