Skip to content

Commit

Permalink
Linting: Allow no warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Paul committed Jun 25, 2021
1 parent 2f50d4b commit e016bf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Expand Up @@ -105,6 +105,7 @@
"@typescript-eslint/no-var-requires": "off",
"strict": "off",
// temporary
"@typescript-eslint/no-unused-vars": "off",
"indent": "off",
"prefer-const": "off",
"no-var": "off",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"prepare": "npm run build",
"build": "tsc --project ./tsconfig.json",
"test": "BLUEBIRD_DEBUG=1 jasmine --stop-on-failure=true",
"lint": "eslint -c .eslintrc --max-warnings 4 'spec/**/*.js' 'src/**/*.ts'",
"lint": "eslint -c .eslintrc --max-warnings 0 'spec/**/*.js' 'src/**/*.ts'",
"check": "npm test && npm run lint",
"ci-test": "nyc --report text jasmine",
"ci": "npm run lint && npm run ci-test"
Expand Down

0 comments on commit e016bf1

Please sign in to comment.