dcl-catalyst-commons
Version:
Common tools and types to share between catalyst servers and clients
18 lines (17 loc) • 571 B
JSON
{
"extends": "@dcl/eslint-config",
"parserOptions": {
"ecmaVersion": 2020, // Allows for the parsing of modern ECMAScript features
"sourceType": "module", // Allows for the use of imports
"project": [
// Specify it only for TypeScript files
"./tsconfig.json"
]
},
"rules": {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-floating-promises": 2
}
}