File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
//
6
6
// NOTE: Keep this file in sync with `./eslint.base.config.js`!
7
7
8
- const config = require ( "." ) ;
8
+ const config = require ( "./index.js " ) ;
9
9
10
10
const includeDeprecated = ! process . env . ESLINT_CONFIG_PRETTIER_NO_DEPRECATED ;
11
11
Original file line number Diff line number Diff line change 10
10
11
11
const globals = require ( "globals" ) ;
12
12
const base = require ( "./eslint.base.config" ) ;
13
- const index = require ( "./index .js" ) ;
13
+ const flat = require ( "./flat .js" ) ;
14
14
const prettier = require ( "./prettier" ) ;
15
15
const eslintrc = require ( "./.eslintrc" ) ;
16
16
17
17
module . exports = [
18
18
...base ,
19
- index ,
19
+ flat ,
20
20
prettier ,
21
21
{
22
22
rules : eslintrc . rules ,
Original file line number Diff line number Diff line change 47
47
"scripts" : {
48
48
"prettier" : " prettier --write ." ,
49
49
"release" : " clean-pkg-json && changeset publish" ,
50
- "test" : " yarn test:prettier && ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true yarn test:with-env && ESLINT_USE_FLAT_CONFIG=false yarn test:with-env && yarn build " ,
50
+ "test" : " yarn test:prettier && ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true yarn test:with-env && ESLINT_USE_FLAT_CONFIG=false yarn test:with-env" ,
51
51
"test:cli-sanity" : " node ./bin/cli.js index.js" ,
52
52
"test:cli-sanity-warning" : " node ./bin/cli.js react.js ./bin/cli.js" ,
53
53
"test:deprecated" : " eslint-find-rules --deprecated index.js" ,
You can’t perform that action at this time.
0 commit comments