📄 noTypesMissingFileAnnotation.js
/home/palash/git/site/node_modules/eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation.js
Language: js • Lines: 67
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = void 0;

var _utilities = require("../utilities");

/**
 * Disallows the use for flow types without a valid file annotation.
 * Only checks files without a valid flow annotation.
 */
const schema = [];

const create = context => {
  // Skip flow files
  if ((0, _utilities.isFlowFile)(context, false)) {
    return {};
  }

  const reporter = (node, type) => {
    context.report({
      data: {
        type
      },
      message: 'Type {{type}} require valid Flow declaration.',
      node
    });
  };

  return {
    ExportNamedDeclaration(node) {
      if (node.exportKind === 'type') {
        reporter(node, 'exports');
      }
    },

    ImportDeclaration(node) {
      if (node.importKind === 'type') {
        reporter(node, 'imports');
      }

      if (node.importKind === 'value' && node.specifiers.some(specifier => {
        return specifier.importKind === 'type';
      })) {
        reporter(node, 'imports');
      }
    },

    TypeAlias(node) {
      reporter(node, 'aliases');
    },

    TypeAnnotation(node) {
      reporter(node, 'annotations');
    }

  };
};

var _default = {
  create,
  schema
};
exports.default = _default;
module.exports = exports.default;