fix(my-joy-beta): fix most of linting

This commit is contained in:
Sara Vieira 2018-01-31 19:01:12 +00:00
parent 1bc099d3f1
commit cec8774164
2 changed files with 4 additions and 7 deletions

View File

@ -4,10 +4,7 @@
"no-console": 0,
"new-cap": 0,
"camelcase": 1,
// temp
"no-undef": 1,
"no-debugger": 1,
"no-negated-condition": 0,
"jsx-a11y/href-no-hash": 0
"jsx-a11y/href-no-hash": 0,
"no-negated-condition": 0
}
}

View File

@ -7,8 +7,8 @@
"jsnext:main": "dist/es/index.js",
"module": "dist/es/index.js",
"scripts": {
"lint-ci": "eslint . --ext .js --ext .md",
"lint": "eslint . --fix --ext .js --ext .md",
"lint-ci": "eslint . --ext .js",
"lint": "eslint . --fix --ext .js",
"test-ci": "redrun test",
"test": "NODE_ENV=test joyent-react-scripts test --env=jsdom",
"compile:es": "babel src --out-dir dist/es --ignore spec.js",