• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

platinumazure / eslint-plugin-qunit / 4748569255

pending completion
4748569255

push

github

GitHub
Upgrade: Bump eslint from 8.36.0 to 8.38.0 (#335)

653 of 653 branches covered (100.0%)

878 of 878 relevant lines covered (100.0%)

82.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/index.js
1
/**
2
 * @fileoverview Entry point for eslint-plugin-qunit. Exports rules and configs.
3
 * @author Kevin Partington
4
 */
5

6
/* eslint sort-keys: "error" */
7

8
"use strict";
9

10
const requireIndex = require("requireindex");
1✔
11

12
module.exports = {
1✔
13
    rules: requireIndex(`${__dirname}/lib/rules`),
14

15
    // eslint-disable-next-line sort-keys
16
    configs: {
17
        recommended: {
18
            plugins: ["qunit"],
19
            rules: {
20
                "qunit/assert-args": "error",
21
                "qunit/literal-compare-order": "error",
22
                "qunit/no-assert-equal": "error",
23
                "qunit/no-assert-equal-boolean": "error",
24
                "qunit/no-assert-logical-expression": "error",
25
                "qunit/no-async-in-loops": "error",
26
                "qunit/no-async-module-callbacks": "error",
27
                "qunit/no-async-test": "error",
28
                "qunit/no-commented-tests": "error",
29
                "qunit/no-compare-relation-boolean": "error",
30
                "qunit/no-conditional-assertions": "error",
31
                "qunit/no-early-return": "error",
32
                "qunit/no-global-assertions": "error",
33
                "qunit/no-global-expect": "error",
34
                "qunit/no-global-module-test": "error",
35
                "qunit/no-global-stop-start": "error",
36
                "qunit/no-hooks-from-ancestor-modules": "error",
37
                "qunit/no-identical-names": "error",
38
                "qunit/no-init": "error",
39
                "qunit/no-jsdump": "error",
40
                "qunit/no-negated-ok": "error",
41
                "qunit/no-nested-tests": "error",
42
                "qunit/no-ok-equality": "error",
43
                "qunit/no-only": "error",
44
                "qunit/no-qunit-push": "error",
45
                "qunit/no-qunit-start-in-tests": "error",
46
                "qunit/no-qunit-stop": "error",
47
                "qunit/no-reassign-log-callbacks": "error",
48
                "qunit/no-reset": "error",
49
                "qunit/no-setup-teardown": "error",
50
                "qunit/no-test-expect-argument": "error",
51
                "qunit/no-throws-string": "error",
52
                "qunit/require-expect": "error",
53
                "qunit/require-object-in-propequal": "error",
54
                "qunit/resolve-async": "error"
55
            }
56
        }
57
    }
58
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc