Code style modifications should accompany functional improvements rather than being submitted as standalone changes. When improving code, prefer modern JavaScript syntax like object spread over older patterns or external dependencies.
Code style modifications should accompany functional improvements rather than being submitted as standalone changes. When improving code, prefer modern JavaScript syntax like object spread over older patterns or external dependencies.
Example:
// Instead of using external dependencies:
const merged = require('utils-merge')(obj1, obj2);
// Prefer native JavaScript features:
const merged = {...obj1, ...obj2};
The project prioritizes meaningful contributions that improve functionality or fix issues over purely cosmetic changes. Pull requests focused solely on code style updates without functional benefits are generally not accepted.
Enter the URL of a public GitHub repository