File tree 4 files changed +4
-15
lines changed
4 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -152,17 +152,9 @@ export default [
152
152
153
153
"node/no-extraneous-import" : [ "error" ] ,
154
154
155
- "node/file-extension-in-import" : [
156
- "error" ,
157
- "always" ,
158
- {
159
- ".js" : "never" ,
160
- ".ts" : "never" ,
161
- ".tsx" : "never" ,
162
- } ,
163
- ] ,
155
+ "node/file-extension-in-import" : [ "off" ] ,
164
156
165
- "node/no-missing-import" : [ "error " ] ,
157
+ "node/no-missing-import" : [ "off " ] ,
166
158
"node/no-unpublished-import" : [ "error" ] ,
167
159
"node/exports-style" : [ "error" , "module.exports" ] ,
168
160
"node/no-callback-literal" : [ "off" ] ,
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import type {
6
6
VElement ,
7
7
VGenericExpression ,
8
8
} from "../ast/index"
9
- // eslint-disable-next-line node/no-extraneous-import -- ignore
10
9
import type { TSESTree } from "@typescript-eslint/utils"
11
10
import type {
12
11
Reference ,
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ import { DEFAULT_ECMA_VERSION } from "../script-setup/parser-options"
54
54
import type { LinesAndColumns } from "../common/lines-and-columns"
55
55
import type { ParserObject } from "../common/parser-object"
56
56
import { isEnhancedParserObject , isParserObject } from "../common/parser-object"
57
- // eslint-disable-next-line node/no-extraneous-import -- ignore
58
57
import type { TSESTree } from "@typescript-eslint/utils"
59
58
import type { GenericProcessInfo } from "./generic"
60
59
import { extractGeneric } from "./generic"
Original file line number Diff line number Diff line change 4
4
* See LICENSE file in root directory for full license.
5
5
*/
6
6
7
- import type { Node } from "../../src/ast"
8
- // eslint-disable-next-line @mysticatea/node/no-missing-import
9
- import type { VisitorKeys } from "../eslint-visitor-keys"
7
+ import type { Node } from "../../src/ast/index"
8
+ import type { VisitorKeys } from "eslint-visitor-keys"
10
9
11
10
export type Selector =
12
11
| AdjacentSelector
You can’t perform that action at this time.
0 commit comments