1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-firebase-hosting-and-docker/.eslintrc.json
Saro Vindigni 2fdd43c307 Create with-firebase-hosting-and-docker example (#5373)
* ADD with-firebase-hosting-and-docker example

* Improve doc
2018-12-10 16:19:57 +01:00

32 lines
665 B
JSON

{
"extends": ["airbnb"],
"parser": "babel-eslint",
"rules": {
"import/prefer-default-export": "off",
"react/jsx-boolean-value": 0,
"react/require-default-props": 0,
"react/no-array-index-key": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/label-has-for": [
2,
{
"components": ["Label"],
"required": {
"every": ["nesting", "id"]
},
"allowChildren": true
}
]
},
"globals": {
"window": true,
"document": true,
"navigator": true
},
"env": {
"es6": true,
"node": true
}
}