.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / createPlugin.js
1 /* @flow */
2 "use strict";
3
4 module.exports = function(ruleName /*: string*/, rule /*: Function*/) {
5   return {
6     ruleName,
7     rule
8   };
9 };