mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
bc8a782f74
* refactor: change structure project * refactor: change structure project * fix: add hooks for set query params * refactor: add index for pages * docs: add TESTCASES.md * refactor: restructure components * feat: add base components * feat: add reset styles * feat: add styles for custom panel page * feat: add styles for predefined panels * feat: add style for TracingsView.tsx * feat: add Alerts * feat: add Tooltip.tsx * fix: correct styles * feat: add DatePicker.tsx * feat: add tables * feat: add theme provider * fix: replace using callbacks as props to handlers * fix: correct update time * fix: change TimePicker.tsx * fix: correct styles * fix: update packages * vmui: refactor code, remove material-ui Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaFeatures": { "jsx": true },
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"react",
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"react/jsx-closing-bracket-location": [1, "line-aligned"],
|
|
"react/jsx-max-props-per-line":[1, { "maximum": 1 }],
|
|
"react/jsx-first-prop-new-line": [1, "multiline"],
|
|
"object-curly-spacing": [2, "always"],
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": ["error", "double"],
|
|
"semi": ["error", "always"],
|
|
"react/prop-types": 0
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"pragma": "React", // Pragma to use, default to "React"
|
|
"version": "detect"
|
|
},
|
|
"linkComponents": [
|
|
// Components used as alternatives to <a> for linking, eg. <Link to={ url } />
|
|
"Hyperlink",
|
|
{
|
|
"name": "Link", "linkAttribute": "to"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|