[vlc-devel] [PATCH 01/15] http: add eslintrc.json
David Loiret
loiret.d at gmail.com
Tue Jun 23 14:42:36 CEST 2020
---
share/lua/http/.eslintrc.json | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 share/lua/http/.eslintrc.json
diff --git a/share/lua/http/.eslintrc.json b/share/lua/http/.eslintrc.json
new file mode 100644
index 0000000000..0c7aa281f1
--- /dev/null
+++ b/share/lua/http/.eslintrc.json
@@ -0,0 +1,16 @@
+{
+ "extends": "airbnb-base",
+ "rules": {
+ "indent": [2, 4],
+ "no-param-reassign": 0,
+ "consistent-return": 0,
+ "no-undef": 0,
+ "comma-dangle": ["error", "never"],
+ "import/prefer-default-export": "off",
+ "import/extensions": "off",
+ "arrow-body-style": "off"
+ },
+ "plugins": [
+ "import"
+ ]
+}
--
2.18.0
More information about the vlc-devel
mailing list