line_push/node_modules/eslint-loader/dist/ESLintError.js
2022-07-17 13:16:16 +08:00

17 lines
281 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class ESLintError extends Error {
constructor(messages) {
super(messages);
this.name = 'ESLintError';
this.stack = false;
}
}
exports.default = ESLintError;