mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
16 lines
355 B
JSON
16 lines
355 B
JSON
{
|
|
"extends": ["eslint:recommended", "@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "error",
|
|
"no-undef": "error"
|
|
}
|
|
}
|