aboutsummaryrefslogtreecommitdiff
path: root/eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'eslintrc.json')
-rw-r--r--eslintrc.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/eslintrc.json b/eslintrc.json
new file mode 100644
index 0000000..289e875
--- /dev/null
+++ b/eslintrc.json
@@ -0,0 +1,19 @@
+{
+ "extends": "airbnb",
+ "rules": {
+ "no-undef": 0,
+ "prefer-arrow-callback": 0,
+ "no-console": 0,
+ "require-jsdoc": ["error", {
+ "require": {
+ "FunctionDeclaration": true,
+ "MethodDefinition": false,
+ "ClassDeclaration": false
+ }
+ }],
+ "valid-jsdoc": ["error", {
+ "requireParamDescription": true,
+ "requireReturn": false
+ }]
+ }
+}