UNPKG

homebridge-camera-ui

Version:

User Interface for RTSP capable cameras with HSV support.

32 lines (31 loc) 996 B
module.exports = { parser: '@babel/eslint-parser', parserOptions: { ecmaVersion: 12, sourceType: 'module', requireConfigFile: false, }, ignorePatterns: ['homebridge-ui', 'node_modules'], plugins: ['@babel', 'prettier', 'unicorn'], extends: ['eslint:recommended', 'plugin:prettier/recommended', 'plugin:unicorn/recommended'], root: true, env: { es2021: true, node: true, }, rules: { quotes: ['error', 'single'], 'comma-dangle': ['error', 'only-multiline'], 'no-multiple-empty-lines': ['warn', { max: 1, maxEOF: 0 }], 'eol-last': ['error', 'always'], 'space-before-function-paren': ['error', { named: 'never' }], 'prettier/prettier': ['error'], 'unicorn/filename-case': 'off', 'unicorn/numeric-separators-style': 'off', 'unicorn/no-null': 'off', 'unicorn/no-nested-ternary': 'off', 'unicorn/prefer-module': 'off', 'unicorn/prefer-node-protocol': 'off', 'unicorn/no-await-expression-member': 'off', }, };