Skip to content
Snippets Groups Projects
.eslintrc.json 378 B
Newer Older
{
    "extends": "airbnb",
    "plugins": [
        "react",
        "jsx-a11y",
        "import"
    ],
    "rules": {
        "jsx-a11y/heading-has-content": [ "off" ],
        "jsx-a11y/anchor-has-content": [ "off" ],
        "indent": [ "error", 4 ],
        "no-unused-vars": [ "error", { "args": "none" }],
        "no-param-reassign": [ "off" ]