lr-i18n
Version:
Allows to connect your `Laravel` Framework localization files with `React`.
33 lines • 889 B
Plain Text
{
"env": {
"browser": true,
"jest": true
},
"extends": [
"airbnb-typescript",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"plugins": ["import", "react", "@typescript-eslint", "jest"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module",
"project": "tsconfig.json"
},
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-shadow": "off",
"consistent-return": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-nested-ternary": "off",
"no-param-reassign": "off",
"no-promise-executor-return": "off",
"prefer-destructuring": "off"
}
}