For consistency and readability we're explicitly adding the .json extension to config files.
23 lines
625 B
JSON
23 lines
625 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"settings": {
|
|
"react": {
|
|
"pragma": "createElement"
|
|
}
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"react/prop-types": "off",
|
|
"react/jsx-key": "off"
|
|
}
|
|
}
|