eslint-config-blazex
Version:
🔥 Blazex 🔥 eslint config that can be used across projects
17 lines (16 loc) • 415 B
JavaScript
export default {
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE', 'PascalCase', 'snake_case'],
},
],
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-use-before-define': [
'error',
{ functions: false },
],
'@typescript-eslint/return-await': 0,
};