{ "env": { "browser": true, "es2021": true }, "extends": [ "plugin:@pepperi-addons/pepperi-lint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2020, // Allows for the parsing of modern ECMAScript features "sourceType": "module"// Allows for the use of imports }, "plugins": [ ], "rules": { // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs // e.g. "@typescript-eslint/explicit-function-return-type": "off", }, "overrides": [ { "files": ["installation.ts", "api.ts"], "rules": { "@typescript-eslint/naming-convention": [ "error", { "selector": ["function"], "format": ["snake_case"] } ], "camelcase": "off" } } ] }