This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
EvoCalculator/.eslintrc.json
2021-04-23 09:49:14 +03:00

28 lines
592 B
JSON

{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"no-console": "warn",
"react/display-name": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/prop-types": "off",
"no-unused-vars": "warn"
}
}