mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-28 05:15:27 +00:00
f3a440244e
Test Plan: Run `yarn lint` and `yarn travis` and observe success. Add something that triggers a lint warning, like `const zzz = 3;`; re-run and observe failures. wchargin-branch: lint
13 lines
299 B
JavaScript
13 lines
299 B
JavaScript
// This is a custom Jest transformer turning style imports into empty objects.
|
|
// http://facebook.github.io/jest/docs/en/webpack.html
|
|
|
|
module.exports = {
|
|
process() {
|
|
return "module.exports = {};";
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return "cssTransform";
|
|
},
|
|
};
|