UNPKG

event-queuejs

Version:
89 lines (88 loc) 1.94 kB
{ "parserOptions": { "parser": "babel-eslint", "ecmaVersion": 2017, "ecmaFeatures": { "implied": true }, "sourceType": "module" }, "env": { "es6": true, "node": true, "browser": true }, "extends": [ "airbnb-base", "plugin:vue/essential" ], "globals": { "RSK_CONFIG": "readonly", "CONFIG": "readonly", "ELEMENT": "readonly", "_": "readonly", "vue": "readonly", "vue-router": "readonly" }, "rules": { "prefer-destructuring": 0, "destructuring": 0, "no-useless-escape": 0, "prefer-rest-params": 0, "no-restricted-globals": 0, "no-param-reassign": 0, "no-console": 0, "no-underscore-dangle": 0, "class-methods-use-this": 0, "no-tabs": 0, "camelcase": 0, "no-plusplus": 0, "no-new": 0, "no-use-before-define": 0, "func-names": 0, "prefer-const": 1, "no-return-assign": 1, "eqeqeq": 1, "no-shadow": 1, "no-restricted-syntax": 0, "no-debugger": 0, "import/no-dynamic-require": 0, "import/order": 0, "one-var": 0, "object-curly-spacing": ["error", "always"], "array-bracket-spacing": ["error", "never"], "radix": 0, "consistent-return": 1, "no-unused-expressions": 1, "no-unused-vars": 1, "prefer-promise-reject-errors": 0, "linebreak-style": 0, "arrow-body-style": 0, "global-require": 0, "array-callback-return": 0, "import/no-unresolved": 0, "import/prefer-default-export": 0, "no-bitwise": [ 2, { "allow": [ "~", "&" ] } ], "import/no-extraneous-dependencies": [ 0, { "devDependencies": true } ], "no-mixed-operators": 0, "guard-for-in": 0, "no-multi-assign": 1, "max-len": 0, "vue/no-side-effects-in-computed-properties": 1, "vue/require-v-for-key": 1, "import/extensions": 0 } }