19 lines
312 B
JavaScript
19 lines
312 B
JavaScript
|
/**
|
||
|
* @type {import("eslint").Linter.Config}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2020,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
|
||
|
'prettier',
|
||
|
'plugin:prettier/recommended',
|
||
|
],
|
||
|
rules: {},
|
||
|
}
|