diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 00000000..92a17a54 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,25 @@ +{ + "env": { + "browser": true, + "es6": true, + "jquery": true + }, + "extends": [ + "airbnb-base" + ], + "parserOptions": { + "ecmaVersion": 2020, + "sourceType": "module" + }, + "rules": { + "max-len": 0, + "import/extensions": [ + "error", + "ignorePackages", + { + "js": "always" + } + ], + "prefer-rest-params": 0 + } +} diff --git a/.hound.yml b/.hound.yml index 6728a4cb..33c398d8 100644 --- a/.hound.yml +++ b/.hound.yml @@ -1,3 +1,3 @@ eslint: enabled: true - config_file: .eslintrc.json \ No newline at end of file + config_file: .eslintrc \ No newline at end of file