mirror of
https://github.com/rainloreley/artnet-usbdmx-converter.git
synced 2025-01-17 20:53:26 +01:00
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: true,
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
plugins: ['@typescript-eslint'],
|
|
root: true,
|
|
}; |