@spscommerce/eslint-config-typescript
Version:
SPS official linter configuration for TypeScript.
13 lines (12 loc) • 393 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.strictMode = void 0;
// ✅ = recommended, 🔧 = fixable
exports.strictMode = {
/**
* disallow the 'use strict' directive 🔧
* https://eslint.org/docs/rules/strict
* this is handled for you and does not need to be present in your source files
*/
strict: ["error", "never"],
};
;