diff --git a/.eslintrc.json b/.eslintrc.json index ae1150ec..b85bd8ad 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,6 +1,13 @@ { - "env": { - "browser": true + "rules": { + "padded-blocks": "off" }, - "extends": ["airbnb-base", "eslint:recommended", "plugin:react/recommended"] -} \ No newline at end of file + // "extends": ["airbnb-base", "eslint:recommended", "plugin:react/recommended"] + "parserOptions": { + "ecmaVersion": 2020, + "sourceType": "module", + "ecmaFeatures": { + "jsx": true + } + } +}