--- ruleName: no-var-requires description: Disallows the use of require statements except in import statements. descriptionDetails: |- In other words, the use of forms such as `var module = require("module")` are banned. Instead use ES6 style imports or `import foo = require('foo')` imports. optionsDescription: Not configurable. options: null optionExamples: - 'true' type: typescript optionsJSON: 'null' layout: rule title: 'Rule: no-var-requires' ---