File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33module . exports = {
44 root : true ,
55 parserOptions : {
6- ecmaVersion : 2022
6+ ecmaVersion : 2022 ,
77 } ,
88 env : {
9- es6 : true
9+ es6 : true ,
1010 } ,
1111 extends : [
12- 'sane-node'
12+ 'sane-node' ,
1313 ] ,
1414 rules : {
1515 // https://github.com/mysticatea/eslint-plugin-node/issues/77,
16- 'node/no-unpublished-require' : 'off'
16+ 'node/no-unpublished-require' : 'off' ,
1717 } ,
1818 overrides : [
1919 {
2020 files : [
21- 'test/tests.js'
21+ 'test/tests.js' ,
2222 ] ,
2323 env : {
24- mocha : true
24+ mocha : true ,
2525 } ,
2626 plugins : [
27- 'mocha'
27+ 'mocha' ,
2828 ] ,
2929 extends : [
30- 'plugin:mocha/recommended'
30+ 'plugin:mocha/recommended' ,
3131 ] ,
3232 rules : {
3333 'mocha/no-exclusive-tests' : 'error' ,
34- 'mocha/no-empty-description' : 'off'
35- }
36- }
37- ]
34+ 'mocha/no-empty-description' : 'off' ,
35+ } ,
36+ } ,
37+ ] ,
3838} ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
33module . exports = {
4+ < << < << < HEAD
45 spec : [ 'test/tests.js' ]
6+ === = ===
7+ spec : [ 'test/**/*-test.js' ] ,
8+ > >>> >>> cbb66f9 ( v6 .5 .2 ...v6 .8 .4 )
59} ;
Original file line number Diff line number Diff line change 11'use strict' ;
22
33module . exports = {
4- extends : [ '@commitlint/config-conventional' ]
4+ extends : [ '@commitlint/config-conventional' ] ,
55} ;
Original file line number Diff line number Diff line change 1313 },
1414 {
1515 "name" : " @kellyselden/node-template" ,
16- "version" : " 6.5.2 " ,
16+ "version" : " 6.8.4 " ,
1717 "blueprints" : [
1818 {
1919 "name" : " @kellyselden/node-template" ,
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+
3+ const {
4+ defineConfig,
5+ globalIgnores,
6+ } = require ( 'eslint/config' ) ;
7+
8+ const mocha = require ( 'eslint-plugin-mocha' ) ;
9+ const saneNode = require ( 'eslint-config-sane-node' ) ;
10+
11+ module . exports = defineConfig ( [
12+ saneNode ,
13+ {
14+ ...mocha . configs . flat . recommended ,
15+ files : [
16+ 'test/**/*-test.js' ,
17+ ] ,
18+ rules : {
19+ ...mocha . configs . flat . recommended . rules ,
20+ 'mocha/no-exclusive-tests' : 'error' ,
21+ 'mocha/no-empty-description' : 'off' ,
22+ } ,
23+ } ,
24+ globalIgnores ( [
25+ 'test/fixtures/' ,
26+ ] ) ,
27+ ] ) ;
Original file line number Diff line number Diff line change 2929 "ember-addon-codemods-manifest" : " " ,
3030 "ember-app-codemods-manifest" : " " ,
3131 "ember-cli-update" : " 2.0.1" ,
32- "eslint" : " ^8.57.1" ,
33- "eslint-config-sane" : " ^1.0.2" ,
34- "eslint-config-sane-node" : " ^2.0.0" ,
35- "eslint-plugin-json-files" : " ^5.1.0" ,
32+ "eslint" : " ^9.34.0" ,
33+ "eslint-config-sane-node" : " ^5.0.0" ,
3634 "eslint-plugin-mocha" : " ^10.5.0" ,
37- "eslint-plugin-n" : " ^17.20.0" ,
38- "eslint-plugin-prefer-let" : " ^4.0.0" ,
3935 "fs-extra" : " ^11.0.0" ,
4036 "git-fixtures" : " ^9.0.0" ,
41- "mocha" : " ^11.7.0 " ,
42- "mocha-helpers" : " ^10.0.0 " ,
37+ "mocha" : " ^11.7.1 " ,
38+ "mocha-helpers" : " ^10.2.1 " ,
4339 "monorepo-next" : " ^13.0.0" ,
44- "renovate-config-standard" : " 2.3.0 " ,
40+ "renovate-config-standard" : " 2.4.2 " ,
4541 "standard-node-template" : " 7.2.0"
4642 }
4743}
You can’t perform that action at this time.
0 commit comments