We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e83975 commit d242723Copy full SHA for d242723
1 file changed
lib/lint/file.js
@@ -98,6 +98,12 @@ customMime.add( {
98
"filenames": [ "dockerfile", "*.dockerfile" ],
99
} );
100
101
+customMime.add( {
102
+ "essence": "application/x-peggy",
103
+ "compressible": true,
104
+ "extnames": [ ".peggy" ],
105
+} );
106
+
107
const DEFAULT_ESLINT_CONFIG_JAVASCRIPT = import.meta.resolve( "#resources/eslint.config.javascript.js" ),
108
DEFAULT_ESLINT_CONFIG_VUE = import.meta.resolve( "#resources/eslint.config.vue.js" ),
109
DEFAULT_ESLINT_CONFIG_TYPESCRIPT = import.meta.resolve( "#resources/eslint.config.typescript.js" );
@@ -232,6 +238,7 @@ const USE_PRETTIER_FOR_JS = true,
232
238
"text/x-lua": {},
233
239
"text/x-vim": {},
234
240
"text/plain": {},
241
+ "text/x-peggy": {},
235
242
};
236
243
237
244
// prepare types
0 commit comments