File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ export function antfu(
86
86
autoRenamePlugins = true ,
87
87
componentExts = [ ] ,
88
88
gitignore : enableGitignore = true ,
89
- isInEditor = isInEditorEnv ( ) ,
90
89
jsx : enableJsx = true ,
91
90
react : enableReact = false ,
92
91
regexp : enableRegexp = true ,
@@ -97,6 +96,14 @@ export function antfu(
97
96
vue : enableVue = VuePackages . some ( i => isPackageExists ( i ) ) ,
98
97
} = options
99
98
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
+
100
107
const stylisticOptions = options . stylistic === false
101
108
? false
102
109
: typeof options . stylistic === 'object'
You can’t perform that action at this time.
0 commit comments