mirror of
https://github.com/kremalicious/ipfs.git
synced 2024-11-21 17:27:06 +01:00
37 lines
803 B
Plaintext
37 lines
803 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"project": "./tsconfig.json",
|
|
"tsconfigRootDir": "./"
|
|
},
|
|
"extends": [
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:jsx-a11y/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"prettier/react",
|
|
"plugin:prettier/recommended",
|
|
"plugin:react/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint", "react"],
|
|
"rules": {
|
|
"react/prop-types": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off"
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"jest": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|