uniswap-interface-uncensored/.eslintrc.json

31 lines
693 B
JSON
Raw Normal View History

{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
// Allows for the parsing of JSX
"jsx": true
}
},
"ignorePatterns": [
"node_modules/**/*"
],
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
2020-05-09 01:32:36 +03:00
"plugin:react-hooks/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
2020-05-08 22:46:42 +03:00
"prettier/prettier": "error",
2020-05-09 01:32:36 +03:00
"@typescript-eslint/no-explicit-any": "off"
}
}