@winstrike/next-i18next-koa
Version:
The easiest way to translate your NextJs apps. With Koa support only. Forked from 'next-i18next'.
29 lines • 645 B
Plain Text
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true
},
"rules": {
"semi": [
2,
"never"
],
"padded-blocks": 0,
"global-require": 0,
"function-paren-newline": 0,
"no-buffer-constructor": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"import/no-mutable-exports": 0,
"react/jsx-filename-extension": 0,
"react/prefer-stateless-function": 0,
"no-restricted-syntax": 0,
"no-useless-escape": 0,
"react/prop-types": 0,
"no-eval": 0,
"no-console": ["error", {
"allow": ["warn", "error"]
}]
}
}