{ "root": true, "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "rules": { "no-console": 1 } } // off means 0 (turns off the rule completely) // warn means 1 (turns the rule on, but won't make the linter fail) // error means 2 (turns the rule on and will make the linter fail)