Skip to content

Commit

Permalink
feat(style): add warning messages when binding number to ambiguous pr…
Browse files Browse the repository at this point in the history
…operties (#1702)
  • Loading branch information
bigopon committed Mar 8, 2023
1 parent 3c61393 commit 0937b63
Show file tree
Hide file tree
Showing 12 changed files with 1,214 additions and 1,168 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Expand Up @@ -366,6 +366,9 @@ jobs:
when: always
- store_test_results:
path: packages/__tests__/coverage
- store_artifacts:
path: packages/__tests__/coverage/test-results.xml
destination: test-results

unit_test_esm_node:
executor: docker_circleci
Expand Down
4 changes: 2 additions & 2 deletions packages/__tests__/.eslintrc.cjs
Expand Up @@ -40,8 +40,8 @@ module.exports = {
'no-await-in-loop': 'off',
'require-atomic-updates': 'off',

// Things we maybe need to fix some day, so are marked as off for now as they're quite noisy:
'mocha/max-top-level-suites': 'off',
// can only allow 1, to produce proper junit test format for later consumption
"mocha/max-top-level-suites": ['error', {limit: 1}],
'mocha/no-setup-in-describe': 'off',
'mocha/no-synchronous-tests': 'off',

Expand Down

0 comments on commit 0937b63

Please sign in to comment.