File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
"bench:e2e:ci-visibility" : " node benchmark/e2e-ci/benchmark-run.js" ,
13
13
"type:doc" : " cd docs && yarn && yarn build" ,
14
14
"type:test" : " cd docs && yarn && yarn test" ,
15
- "lint" : " node scripts/check_licenses.js && eslint . && yarn audit" ,
16
- "lint:fix" : " node scripts/check_licenses.js && eslint . --fix && yarn audit" ,
15
+ "lint" : " node scripts/check_licenses.js && eslint . --max-warnings 0 && yarn audit" ,
16
+ "lint:fix" : " node scripts/check_licenses.js && eslint . --max-warnings 0 -- fix && yarn audit" ,
17
17
"release:proposal" : " node scripts/release/proposal" ,
18
18
"services" : " node ./scripts/install_plugin_modules && node packages/dd-trace/test/setup/services" ,
19
19
"test" : " SERVICES=* yarn services && mocha --expose-gc 'packages/dd-trace/test/setup/node.js' 'packages/*/test/**/*.spec.js'" ,
Original file line number Diff line number Diff line change @@ -1638,7 +1638,7 @@ describe('Config', () => {
1638
1638
1639
1639
it ( 'should not transform the lookup parameter' , ( ) => {
1640
1640
const lookup = ( ) => 'test'
1641
- const config = new Config ( { lookup : lookup } )
1641
+ const config = new Config ( { lookup } )
1642
1642
1643
1643
expect ( config . lookup ) . to . equal ( lookup )
1644
1644
} )
You can’t perform that action at this time.
0 commit comments