We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c185ce3 commit c68d3acCopy full SHA for c68d3ac
src/index.ts
@@ -3,9 +3,9 @@ import {plugin} from './plugin.js';
3
/**
4
* Export single object, according to the CommonJS model. The CommonJS module is
5
* explicitly used here as that's the kind of module commitlint requires for
6
- * plugins.
+ * shareable configurations. This project is an ES module for ease of
7
+ * development, and thus requires the error for an export assignment to be
8
+ * disabled.
9
*/
-// @ts-expect-error TS1203 Export assignment cannot be used when targeting
-// ECMAScript modules. Consider using 'export default' or another module format
10
-// instead.
+// @ts-expect-error TS1203
11
export = plugin;
0 commit comments