Skip to content

Commit

Permalink
Move some github/config files
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Aug 22, 2020
1 parent 1e746ec commit 557cade
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .eslintrc → .eslintrc.json
Expand Up @@ -10,7 +10,10 @@
"extends": ["eslint:recommended", "plugin:ava/recommended", "prettier"],
"plugins": ["prettier", "import"],
"rules": {
"prettier/prettier": [2, { "singleQuote": true, "printWidth": 120, "trailingComma": "none", arrowParens: "avoid" }],
"prettier/prettier": [
2,
{ "singleQuote": true, "printWidth": 120, "trailingComma": "none", "arrowParens": "avoid" }
],
"ava/no-ignored-test-files": 0,
"ava/no-import-test-files": 0,
"import/no-unresolved": 2,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -26,7 +26,7 @@ system, and use hooks to execute any command you need to test, build, and/or pub

- See [CHANGELOG.md](./CHANGELOG.md) for major/breaking updates, and
[releases](https://github.com/release-it/release-it/releases) for a detailed version history.
- To **contribute**, please read [CONTRIBUTING.md](./CONTRIBUTING.md) first.
- To **contribute**, please read [CONTRIBUTING.md](./.github/CONTRIBUTING.md) first.
- Please [open an issue](https://github.com/release-it/release-it/issues/new) if anything is missing or unclear in this
documentation.

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -44,8 +44,8 @@
"lint": "eslint lib test",
"format": "prettier --write \"{lib,test}/**/*.js\"",
"test": "ava",
"coverage": "nyc --reporter=lcov --reporter=html npm test",
"codecov": "nyc --reporter=json npm test && codecov -f coverage/coverage-final.json",
"coverage": "nyc --reporter=lcov --reporter=html --config=config/.codecov.yml npm test",
"codecov": "nyc --reporter=json --config=config/.codecov.yml npm test && codecov -f coverage/coverage-final.json",
"readme": "markdown-toc README.md -i --maxdepth=2 --bullets=-",
"release": "./bin/release-it.js"
},
Expand Down

0 comments on commit 557cade

Please sign in to comment.