mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-13 12:46:59 +00:00
* initial commit * removing files * after pr * move StatusBar to common * last changes from dev * update common-ui * webSocket was added to TrafficViewerApi * useWS * actionButtons added to TrafficV * comment clean * api clean up * api clean up * statusbar position changed * Checkbox changed * AnalyzeButton exported to common * CustomModal added from Ent * oas modal exported to common * removed redundant * oasmodal usage * es6 function * api changed * removed react-scripts Co-authored-by: Leon <>
35 lines
668 B
Plaintext
35 lines
668 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"standard",
|
|
"standard-react",
|
|
"plugin:prettier/recommended",
|
|
"prettier/standard",
|
|
"prettier/react",
|
|
"plugin:@typescript-eslint/eslint-recommended"
|
|
],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"ecmaFeatures": {
|
|
"legacyDecorators": true,
|
|
"jsx": true
|
|
}
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"rules": {
|
|
"space-before-function-paren": 0,
|
|
"react/prop-types": 0,
|
|
"react/jsx-handler-names": 0,
|
|
"react/jsx-fragments": 0,
|
|
"react/no-unused-prop-types": 0,
|
|
"import/export": 0
|
|
}
|
|
}
|