UNPKG

generator-rrrw

Version:

react,redux,react-redux-router,webpack,babel,es6,autoprefixer,HMR,css-module

65 lines (62 loc) 1.52 kB
{ "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "ecmaFeatures": { "jsx": true, "experimentalObjectRestSpread": true } }, "rules": { // Possible Errors "comma-dangle": [2, "never"], "no-console": 0, "no-debugger": 1, "no-extra-semi": 0, "no-inner-declarations": 2, "no-regex-spaces": 1, "valid-typeof": 2, // Best Practices "default-case": 1, "no-eq-null": 2, "no-implied-eval": 2, "no-invalid-this": 1, "no-multi-spaces": [1, { exceptions: { "VariableDeclarator": true, "ImportDeclaration": true } }], "no-with": 2, // other "comma-spacing": [1, { "before": false, "after": true }], "space-infix-ops": [2, {"int32Hint": true}], "indent": [2, 2, {"SwitchCase": 1}], "linebreak-style": [2, "unix"] }, "env": { "es6": true, "browser": true, "node": true, "amd": true, "commonjs": true, "jquery": true }, "globals": { "$": true, "_": true, "jQuery": false, "Zepto": false, "Angular": false, "Backbone": false, "React": false, "Highcharts": false, }, "plugins": [ "react" ], "extends": ["eslint:recommended", "plugin:react/recommended"] }