You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
652 B
28 lines
652 B
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": ["prettier", "plugin:@typescript-eslint/recommended"],
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"experimentalObjectRestSpread": true,
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["@typescript-eslint/eslint-plugin"],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": 0,
|
|
"react/display-name": 0,
|
|
"react/prop-types": 0,
|
|
"@typescript-eslint/adjacent-overload-signatures": 0,
|
|
"@typescript-eslint/ban-types": 0,
|
|
"@typescript-eslint/no-empty-interface": 0
|
|
}
|
|
}
|
|
|