lint-changed
Version:
Lint files changed in git
26 lines (21 loc) • 493 B
JavaScript
module.exports = function (wallaby) {
return {
files: [
{ pattern: 'test/__fixtures__/*', instrument: false },
'src/*.js',
'src/__mocks__/*.js',
'!test/*.spec.js'
],
tests: [
'test/*.spec.js'
],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'**/*.js': wallaby.compilers.babel()
},
testFramework: 'jest'
}
}