aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js35
1 files changed, 14 insertions, 21 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 3cd51ec..83d8348 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,22 +1,15 @@
module.exports = {
- "env": {
- "browser": true,
- "es6": true,
- "jquery": true
- },
- "extends": "eslint:recommended",
- "globals": {
- "Atomics": "readonly",
- "SharedArrayBuffer": "readonly"
- },
- "parserOptions": {
- "ecmaVersion": 2018,
- "sourceType": "module"
- },
- "rules": {
- "no-console": "off",
- "no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
- "eqeqeq": ["error", "smart"],
- "semi": ["error", "always"]
- }
-}; \ No newline at end of file
+ env: {
+ browser: true,
+ es2021: true,
+ },
+ extends: [
+ 'airbnb-base',
+ ],
+ parserOptions: {
+ ecmaVersion: 'latest',
+ sourceType: 'module',
+ },
+ rules: {
+ },
+};