1.0.3 • Published 1 year ago
eslint-plugin-uncalled-iife v1.0.3
eslint-plugin-uncalled-iife
Valid :
(function() {
console.log('hello!');
}());
Invalid :
(function() {
console.log('hello!');
});
Valid :
(function() {
console.log('hello!');
}());
Invalid :
(function() {
console.log('hello!');
});