{
    "root": true,
    "extends": [
		"airbnb-base"
	],
    "parserOptions": {
        "parser": "@babel/eslint-parser",
        "ecmaVersion": 2022,
        "sourceType": "module"
    },
    "rules": {
		"default-param-last": 0,
		"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
		"import/prefer-default-export": 0,
		"no-underscore-dangle": 0,
		"import/extensions": [2, "always"],
        "indent": ["error", "tab"],
        "max-len": 0,
        "no-console": 0,
        "no-param-reassign": ["error", {
            "props": true,
            "ignorePropertyModificationsFor": ["state", "acc"]
        }],
        "no-tabs": "off",
        "no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
		"prefer-destructuring": 0,
        "template-curly-spacing": "off",
    },
    "globals": {
        "CONFIG": true
    }
}