mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
/**
|
|
* @fileoverview exports for config helpers
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
const { defineConfig, globalIgnores } = require("@eslint/config-helpers");
|
|
|
|
module.exports = {
|
|
defineConfig,
|
|
globalIgnores,
|
|
};
|