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

45 строки
1.2 KiB

3 лет назад
  1. 'use strict';
  2. const createAstUtils = require('../util/ast');
  3. module.exports = {
  4. meta: {
  5. type: 'suggestion',
  6. docs: {
  7. description: 'Disallow hooks'
  8. },
  9. schema: [
  10. {
  11. type: 'object',
  12. properties: {
  13. allow: {
  14. type: 'array',
  15. items: {
  16. type: 'string'
  17. }
  18. }
  19. },
  20. additionalProperties: false
  21. }
  22. ]
  23. },
  24. create(context) {
  25. const astUtils = createAstUtils(context.settings);
  26. const [ config = {} ] = context.options;
  27. const { allow = [] } = config;
  28. return {
  29. CallExpression(node) {
  30. const isHookAllowed = allow.includes(node.callee.name);
  31. if (astUtils.isHookIdentifier(node.callee) && !isHookAllowed) {
  32. context.report({
  33. node: node.callee,
  34. message: `Unexpected use of Mocha \`${ node.callee.name }\` hook`
  35. });
  36. }
  37. }
  38. };
  39. }
  40. };