persona-community-5/.pnpm-store/v3/files/d3/f10f36f78356425b1dcd9ce8dfb2622184ca28256a71927d07e0ab6c068fa4359fdde2c038a9b9866b0131f6df813b7ab71b9ec4dbb30ab8710e2e945f8393
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

16 lines
414 B
Plaintext

/**
* @fileoverview Common utils for directives.
*
* This file contains only shared items for directives.
* If you make a utility for rules, please see `../rules/utils/ast-utils.js`.
*
* @author gfyoung <https://github.com/gfyoung>
*/
"use strict";
const directivesPattern = /^(eslint(?:-env|-enable|-disable(?:(?:-next)?-line)?)?|exported|globals?)(?:\s|$)/u;
module.exports = {
directivesPattern
};