uniswap-interface-uncensored/.eslintrc.json

46 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
// Allows for the parsing of JSX
"jsx": true
}
},
2021-02-16 03:31:16 -05:00
"ignorePatterns": ["node_modules/**/*"],
"settings": {
"react": {
"version": "detect"
}
},
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
2020-05-08 18:32:36 -04:00
"plugin:react-hooks/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
2020-05-08 15:46:42 -04:00
"prettier/prettier": "error",
2021-02-15 21:27:42 -05:00
"@typescript-eslint/no-explicit-any": "off",
2021-02-16 03:31:16 -05:00
"@typescript-eslint/ban-ts-comment": "off",
2021-03-31 03:40:13 -04:00
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/react-in-jsx-scope": "off",
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "styled-components",
"message": "Please import from styled-components/macro."
}
],
"patterns": ["!styled-components/macro"]
}
]
}
2021-02-16 03:31:16 -05:00
}