13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'prettier',
|
||
|
'plugin:prettier/recommended'
|
||
|
],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
root: true
|
||
|
};
|