ship-gis/node_modules/eslint-webpack-plugin/dist/ESLintError.js

15 lines
242 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
"use strict";
class ESLintError extends Error {
/**
* @param {string=} messages
*/
constructor(messages) {
super(`[eslint] ${messages}`);
this.name = 'ESLintError';
this.stack = '';
}
}
module.exports = ESLintError;