this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

get eslint working again

Kevin Qi c29a0153 19907728

+3 -1
+1
.eslintignore
··· 1 1 node_modules 2 2 coverage 3 + demo
+1
.eslintrc
··· 8 8 "no-param-reassign": "off", 9 9 "react/forbid-prop-types": "off", 10 10 "react/jsx-boolean-value": ["error", "always"], 11 + "react/jsx-filename-extension": "off", 11 12 "react/jsx-no-bind": "off", 12 13 "react/no-unused-prop-types": "off", // re-enable, there's a bug in eslint that leads to false-positives 13 14 "react/require-default-props": "off",
+1 -1
package.json
··· 26 26 "build:css": "postcss src/styles.css --use autoprefixer -d dist/ --no-map", 27 27 "build:js": "cross-env NODE_ENV=production rollup -c", 28 28 "clean": "rimraf dist", 29 - "lint": "eslint --ext .js,.jsx --cache . && echo \"eslint: no lint errors found\" || true", 29 + "lint": "eslint src", 30 30 "prepublish": "npm run clean && npm run build", 31 31 "test": "jest --config jest.config.js --coverage", 32 32 "start": "npm-run-all --parallel start:js start:css",