Skip to content

Rules

Rules Reference

Using the recommended settings will enables this rule
🔧
Problems reported by this rule can be fixed automatically with the --fix command line option

Currently we support the following rules:

Recommended rules for code correctness that you can drop in without additional configuration.
when use recommended rules, configure as follows.

js
// eslint.config.mjs
import cdkPlugin from "eslint-cdk-plugin";
import tsEslint from "typescript-eslint";

export default [
  ...tsEslint.configs.recommended,
  // ✅ Add plugins
  cdkPlugin.configs.recommended,
  {
    files: ["lib/**/*.ts", "bin/*.ts"],
    // ... some configs
  },
];

Strict Rules

Strict Rules provides all available rules to improve code quality and consistency.
When using strict rules, configure as follows.

js
// eslint.config.mjs
import cdkPlugin from "eslint-cdk-plugin";
import tsEslint from "typescript-eslint";

export default [
  ...tsEslint.configs.recommended,
  // ✅ Add plugins
  cdkPlugin.configs.strict,
  {
    files: ["lib/**/*.ts", "bin/*.ts"],
    // ... some configs
  },
];