Détail du package

eslint-plugin-uncalled-iife

romainmenke68MIT1.0.3

Disallow uncalled IIFE

eslint, plugin, iife

readme

NPM version Node.js CI


eslint-plugin-uncalled-iife

Valid :

(function() {
    console.log('hello!');
}());

Invalid :

(function() {
    console.log('hello!');
});