aboutsummaryrefslogtreecommitdiff
path: root/modern/.eslintrc.js
blob: a10898042a0bf18985efe02d7a229a3f02b5128d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = {
    "extends": "airbnb",
    "plugins": [
        "react"
    ],
    "ignorePatterns": ["serviceWorker.js", "localization.js", "switcher.js"],
    "rules": {
        "max-len": [0],
        "no-shadow": [0],
        "no-return-assign": [0],
        "no-param-reassign": [0],
        "no-prototype-builtins": [0],
        "react/jsx-filename-extension": [1, { "extensions": [".js"] }],
        "react/prop-types": [0],
        "react/jsx-props-no-spreading": [0],
        "jsx-a11y/anchor-is-valid": [0]
    }
};