2019-10-28 07:02:42 -07:00
|
|
|
{
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"extends": [
|
|
|
|
"react-app",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/camelcase": "warn",
|
2020-02-03 06:14:25 -08:00
|
|
|
"@typescript-eslint/explicit-function-return-type": ["off"],
|
2019-10-28 07:02:42 -07:00
|
|
|
"eol-last": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"object-curly-spacing": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"prefer-const": "warn",
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"arrays": "always-multiline",
|
|
|
|
"objects": "always-multiline",
|
|
|
|
"imports": "always-multiline"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"prettier"
|
|
|
|
]
|
|
|
|
}
|