File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ npm-debug.log
77_test.js
88.idea
99.vscode
10+ * .code-workspace
1011.nyc_output
1112.eslint-release-info.json
1213yarn.lock
Original file line number Diff line number Diff line change 1+ import { defineConfig , globalIgnores } from "eslint/config" ;
12import eslintConfigESLint from "eslint-config-eslint" ;
23import eslintConfigESLintFormatting from "eslint-config-eslint/formatting" ;
34import eslintPluginChaiFriendly from "eslint-plugin-chai-friendly" ;
45import globals from "globals" ;
56
6- export default [
7- {
8- ignores : [
9- "**/tests/fixtures/" ,
10- "**/dist/" ,
11- "**/coverage/" ,
12- "packages/espree/tools/create-test-example.js"
13- ]
14- } ,
15- ...eslintConfigESLint ,
7+ export default defineConfig ( [
8+ globalIgnores ( [
9+ "**/tests/fixtures/" ,
10+ "**/dist/" ,
11+ "**/coverage/" ,
12+ "packages/espree/tools/create-test-example.js"
13+ ] ) ,
14+ eslintConfigESLint ,
1615 eslintConfigESLintFormatting ,
1716 {
1817 files : [ "packages/*/tests/lib/**" ] ,
@@ -76,4 +75,4 @@ export default [
7675 "n/no-process-exit" : "off"
7776 }
7877 }
79- ] ;
78+ ] ) ;
Original file line number Diff line number Diff line change 2323 },
2424 "devDependencies" : {
2525 "c8" : " ^10.1.3" ,
26- "eslint" : " ^9.11.1 " ,
26+ "eslint" : " ^9.31.0 " ,
2727 "eslint-config-eslint" : " ^11.0.0" ,
2828 "eslint-plugin-chai-friendly" : " ^1.0.0" ,
2929 "globals" : " ^15.1.0" ,
You can’t perform that action at this time.
0 commit comments