UNPKG

reon

Version:

Event library for React built to resemble React's internal Synthetic Events

46 lines (45 loc) 1.22 kB
{ "root": true, "parser": "@babel/eslint-parser", "env": { "browser": true, "node": true, "es6": true }, "globals": { "__DEV__": true }, "extends": "eslint:recommended", "rules": { "no-console": 0, "no-debugger": 0, "no-shadow": 2, "no-use-before-define": 2, "eqeqeq": 0, "curly": 0, "no-underscore-dangle": 0, "quotes": [2, "single"], "semi": [ 2, "always" ], "space-unary-ops": 0, "space-infix-ops": 2, "indent": [ 2, 4 ], "strict": [ 2, "global" ], "no-multi-spaces": 2, "no-trailing-spaces": 2, "spaced-comment": [2, "always", { "block": { "exceptions": ["*"] } } ], "no-lonely-if": 2, "no-negated-condition": 2, "no-multiple-empty-lines": 2, "new-parens": 2, "new-cap": 2, "eol-last": 2, "consistent-this": [2, "self"], "linebreak-style": [2, "unix"], "max-nested-callbacks": [2, 3], "no-class-assign": 2, "no-const-assign": 2, "no-dupe-class-members": 2, "no-this-before-super": 2, "prefer-const": 1 } }