Skip to content

Instantly share code, notes, and snippets.

@kimjoar
Created September 9, 2017 17:40
Show Gist options
  • Save kimjoar/f6e1636eb9c6722d6745d4039a9ad1c7 to your computer and use it in GitHub Desktop.
Save kimjoar/f6e1636eb9c6722d6745d4039a9ad1c7 to your computer and use it in GitHub Desktop.
module.exports.rules = {
'no-default-export': function(context) {
return {
ExportDefaultDeclaration: function(node) {
context.report(node, 'Default exports are not allowed.');
}
};
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment