mirror of
https://github.com/Nezumi-2711/typescript-practice.git
synced 2026-09-22 05:41:57 +00:00
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
module.exports = {
|
|
root: true,
|
|
plugins: ['@typescript-eslint', 'import', 'prettier'],
|
|
extends: [
|
|
'airbnb-typescript/base',
|
|
'prettier',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:import/typescript',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: './tsconfig.eslint.json',
|
|
},
|
|
};
|