UNPKG

documentation-polyglot

Version:
39 lines (38 loc) 778 B
{ "root": true, "parserOptions": { "sourceType": "module", "ecmaVersion": 2020 }, "plugins": [ "jest" ], "rules": { "no-var": 2, "prefer-const": 2, "no-use-before-define": [2, "nofunc"], "camelcase": 2, "no-lonely-if": 2, "no-else-return": 2, "new-cap": 2, "no-empty": 2, "consistent-return": 0, "no-new": 2, "object-shorthand": ["error", "always", { "avoidQuotes": true }], "no-throw-literal": 2, "no-self-compare": 2, "no-void": 2, "no-unused-vars": 2, "wrap-iife": 2, "no-eq-null": 2, "strict": [2, "global"], "no-shadow": 0, "no-undef": 2 }, "extends": ["eslint:recommended", "prettier"], "env": { "node": true, "es6": true, "jest/globals": true } }