File tree Expand file tree Collapse file tree 4 files changed +8
-16
lines changed Expand file tree Collapse file tree 4 files changed +8
-16
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+
3+ module . exports = require ( 'neostandard' ) ( {
4+ semi : true ,
5+ } ) ;
Original file line number Diff line number Diff line change 421421 "benchmark" : " ^2.1.4" ,
422422 "bindings" : " ^1.5.0" ,
423423 "clang-format" : " ^1.4.0" ,
424- "eslint" : " ^7.32.0" ,
425- "eslint-config-semistandard" : " ^16.0.0" ,
426- "eslint-config-standard" : " ^16.0.3" ,
427- "eslint-plugin-import" : " ^2.24.2" ,
428- "eslint-plugin-node" : " ^11.1.0" ,
429- "eslint-plugin-promise" : " ^5.1.0" ,
424+ "eslint" : " ^9.13.0" ,
430425 "fs-extra" : " ^11.1.1" ,
431- "path " : " ^0.12 .7" ,
426+ "neostandard " : " ^0.11 .7" ,
432427 "pre-commit" : " ^1.2.2" ,
433- "safe-buffer" : " ^5.1.1" ,
434428 "semver" : " ^7.6.0"
435429 },
436430 "directories" : {},
Original file line number Diff line number Diff line change 22
33const assert = require ( 'assert' ) ;
44const testUtil = require ( './testUtil' ) ;
5- const safeBuffer = require ( 'safe-buffer' ) ;
65
76module . exports = require ( './common' ) . runTest ( test ) ;
87
@@ -14,7 +13,7 @@ function test (binding) {
1413 binding . buffer . checkBuffer ( test ) ;
1514 assert . ok ( test instanceof Buffer ) ;
1615
17- const test2 = safeBuffer . Buffer . alloc ( test . length ) ;
16+ const test2 = Buffer . alloc ( test . length ) ;
1817 test . copy ( test2 ) ;
1918 binding . buffer . checkBuffer ( test2 ) ;
2019 } ,
You can’t perform that action at this time.
0 commit comments