Skip to content

Commit

Permalink
chore(stub) lint
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 18, 2020
1 parent 4aeb81a commit 1c44a1a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,5 +1,4 @@
node_modules
.nyc_output
legacy

.putoutcache
2 changes: 1 addition & 1 deletion .madrun.js
Expand Up @@ -5,7 +5,7 @@ const {run} = require('madrun');
module.exports = {
'test': () => 'tape \'test/*.js\'',
'watch:test': () => 'nodemon -w lib -w test -x "npm test"',
'lint': () => 'putout lib test .madrun.js',
'lint': () => 'putout .',
'fix:lint': () => run('lint', '--fix'),
'coverage': () => 'nyc npm test',
'report': () => 'nyc report --reporter=text-lcov | coveralls',
Expand Down
2 changes: 1 addition & 1 deletion .putout.json
@@ -1,7 +1,7 @@
{
"match": {
"lib": {
"remove-console": false
"remove-console": "off"
}
}
}
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: node_js
node_js:
- 15
- 14
- 12
script:
- npm run lint
- npm run coverage && npm run report
Expand All @@ -11,3 +10,4 @@ notifications:
on_success: never
on_failure: change
sudo: false
cache: false

0 comments on commit 1c44a1a

Please sign in to comment.