homebridge-rabbitair
Version:
Homebridge plugin for RabbitAir air purifiers
41 lines (39 loc) • 985 B
text/typescript
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(
{
ignores: ['dist/**']
},
{
rules: {
quotes: ['error', 'single'],
indent: ['warn', 'tab', { SwitchCase: 1 }],
'no-tabs': 'off',
'no-mixed-spaces-and-tabs': 'off',
'linebreak-style': ['error', 'unix'],
semi: ['error', 'always'],
'comma-dangle': ['error'],
'dot-notation': 'error',
eqeqeq: ['error', 'smart'],
curly: ['error', 'all'],
'brace-style': ['error'],
'prefer-arrow-callback': 'warn',
'max-len': ['warn', 160],
'object-curly-spacing': ['error', 'always'],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': [
'error',
{ classes: false, enums: false }
],
'@typescript-eslint/no-unused-vars': ['error', { caughtErrors: 'none' }]
}
},
{
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module'
}
},
eslint.configs.recommended,
...tseslint.configs.recommended
);