版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

16 строки
414 B

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