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

32 lines
665 B
JSON
Raw Normal View History

{
"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
}
}