mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-15 02:33:50 +08:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['tih'],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/ban-ts-comment': 0,
|
|
},
|
|
};
|