UNPKG

sudoc

Version:
34 lines 1.06 kB
{ "extends": "eslint:recommended", "env": { "es6": true, "node": true }, "rules": { "indent": [2, 2], "quotes": [2, "single"], "linebreak-style": [2, "unix"], "semi": [2, "always" ], "comma-style": [2, "last"], "no-trailing-spaces": 2, "no-nested-ternary": 2, "no-unused-vars": [2, {"vars": "all", "args": "none"}], "no-unneeded-ternary": [2, {"defaultAssignment": false}], "callback-return": [2, ["callback", "cb", "next"]], "global-require": 2, "no-path-concat": 2, "no-sync": 2, "no-var": 2, "no-throw-literal": 2, "no-sequences": 2, "no-else-return": 2, "prefer-arrow-callback": 2, "no-spaced-func": 2, "space-before-keywords": [2, "always"], "space-after-keywords": [2, "always"], "block-spacing": [2, "always"], "strict": [2, "global"], "max-nested-callbacks": [1, 4], "camelcase": [1, {"properties": "always"}], "no-warning-comments": [1, { "terms": ["todo", "fixme"], "location": "anywhere" }], "prefer-template": 1, "yoda": 1 } }