Skip to content

Commit c62102b

Browse files
committedAug 21, 2024
feat: print hint message when running in editor
1 parent a50f787 commit c62102b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎src/factory.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ export function antfu(
8686
autoRenamePlugins = true,
8787
componentExts = [],
8888
gitignore: enableGitignore = true,
89-
isInEditor = isInEditorEnv(),
9089
jsx: enableJsx = true,
9190
react: enableReact = false,
9291
regexp: enableRegexp = true,
@@ -97,6 +96,14 @@ export function antfu(
9796
vue: enableVue = VuePackages.some(i => isPackageExists(i)),
9897
} = options
9998

99+
let isInEditor = options.isInEditor
100+
if (isInEditor == null) {
101+
isInEditor = isInEditorEnv()
102+
if (isInEditor)
103+
// eslint-disable-next-line no-console
104+
console.log('[@antfu/eslint-config] Detected running in editor, some rules are disabled.')
105+
}
106+
100107
const stylisticOptions = options.stylistic === false
101108
? false
102109
: typeof options.stylistic === 'object'

0 commit comments

Comments
 (0)