mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 08:04:04 -08:00
32 lines
581 B
JSON
32 lines
581 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"extends": [
|
||
|
"react-app",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/camelcase": "warn",
|
||
|
"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"
|
||
|
]
|
||
|
}
|