gst-plugins-rs/net/webrtc/gstwebrtc-api/.eslintrc.json
Loïc Le Page f17622a1e1 webrtc: Add gstwebrtc-api subproject in net/webrtc plugin
This subproject adds a high-level web API compatible with GStreamer
webrtcsrc and webrtcsink elements and the corresponding signaling
server. It allows a perfect bidirectional communication between HTML5
WebRTC API and native GStreamer.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/946>
2023-04-04 16:29:44 +02:00

62 lines
1.4 KiB
JSON

{
"root": true,
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"getter-return": "error",
"no-await-in-loop": "error",
"no-console": "off",
"no-extra-parens": "off",
"no-template-curly-in-string": "error",
"consistent-return": "error",
"curly": "error",
"eqeqeq": "error",
"no-eval": "error",
"no-extra-bind": "error",
"no-invalid-this": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-multi-spaces": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-self-compare": "error",
"no-throw-literal": "error",
"no-unused-expressions": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-return": "error",
"no-void": "error",
"no-shadow": "error",
"block-spacing": "error",
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"camelcase": "error",
"comma-dangle": "error",
"eol-last": "error",
"indent": [
"error",
2
],
"linebreak-style": "error",
"new-parens": "error",
"no-lonely-if": "error",
"no-multiple-empty-lines": "error",
"no-trailing-spaces": "error",
"quotes": "error",
"semi": "error"
}
}