File tree 4 files changed +11
-7
lines changed
4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ module.exports = [
5
5
...config ,
6
6
files : [ "**/*.js" ]
7
7
} ) ) ,
8
+ {
9
+ ...require ( "eslint-config-eslint/formatting" ) ,
10
+ files : [ "**/*.js" ]
11
+ } ,
8
12
{
9
13
plugins : {
10
14
markdown : require ( "." )
Original file line number Diff line number Diff line change 7
7
"use strict" ;
8
8
9
9
if ( ! process . env . NO_RECURSIVE_PREPARE ) {
10
- const childProcess = require ( "child_process" ) ;
11
- const fs = require ( "fs" ) ;
12
- const path = require ( "path" ) ;
10
+ const childProcess = require ( "node: child_process" ) ;
11
+ const fs = require ( "node: fs" ) ;
12
+ const path = require ( "node: path" ) ;
13
13
14
14
const examplesDir = path . resolve ( __dirname , "examples" ) ;
15
15
const examples = fs . readdirSync ( examplesDir )
Original file line number Diff line number Diff line change 36
36
" lib/processor.js"
37
37
],
38
38
"devDependencies" : {
39
- "@eslint/js" : " ^9.1.1 " ,
39
+ "@eslint/js" : " ^9.4.0 " ,
40
40
"chai" : " ^4.2.0" ,
41
- "eslint" : " ^9.1.1 " ,
42
- "eslint-config-eslint" : " ^10 .0.0" ,
41
+ "eslint" : " ^9.4.0 " ,
42
+ "eslint-config-eslint" : " ^11 .0.0" ,
43
43
"eslint-release" : " ^3.1.2" ,
44
44
"globals" : " ^15.1.0" ,
45
45
"mocha" : " ^6.2.2" ,
Original file line number Diff line number Diff line change 11
11
12
12
const assert = require ( "chai" ) . assert ;
13
13
const { LegacyESLint, FlatESLint } = require ( "eslint/use-at-your-own-risk" ) ;
14
- const path = require ( "path" ) ;
14
+ const path = require ( "node: path" ) ;
15
15
const plugin = require ( "../.." ) ;
16
16
const pkg = require ( "../../package.json" ) ;
17
17
You can’t perform that action at this time.
0 commit comments