testdriverai 7.1.0 → 7.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -0
- package/.github/workflows/linux-tests.yml +28 -0
- package/agent/index.js +18 -45
- package/agent/interface.js +13 -2
- package/agent/lib/commands.js +1 -1
- package/agent/lib/redraw.js +1 -1
- package/agent/lib/sandbox.js +30 -2
- package/agent/lib/valid-version.js +2 -2
- package/debugger/index.html +1 -1
- package/docs/docs.json +140 -131
- package/docs/v6/getting-started/self-hosting.mdx +3 -2
- package/docs/v7/_drafts/agents.mdx +852 -0
- package/docs/v7/_drafts/auto-cache-key.mdx +167 -0
- package/docs/v7/{guides → _drafts}/caching-selectors.mdx +125 -17
- package/docs/v7/_drafts/dashcam-title-feature.mdx +89 -0
- package/docs/v7/_drafts/error-handling.mdx +501 -0
- package/docs/v7/_drafts/implementation-plan.mdx +994 -0
- package/docs/v7/_drafts/init-command.mdx +95 -0
- package/docs/v7/_drafts/optimal-sdk-design.mdx +1348 -0
- package/docs/v7/_drafts/plugin-migration.mdx +222 -0
- package/docs/v7/_drafts/prompt-cache.mdx +200 -0
- package/docs/{QUICK_START_TEST_RECORDING.md → v7/_drafts/quick-start-test-recording.mdx} +3 -3
- package/docs/v7/_drafts/sdk-logging.mdx +222 -0
- package/docs/v7/_drafts/sdk-migration.mdx +474 -0
- package/docs/v7/_drafts/sdk-v7-complete.mdx +345 -0
- package/docs/v7/{guides → _drafts}/self-hosting.mdx +1 -1
- package/docs/v7/{guides → _drafts}/troubleshooting.mdx +2 -2
- package/docs/v7/{guides → _drafts}/vitest-plugin.mdx +4 -4
- package/docs/v7/api/{ai.mdx → act.mdx} +24 -24
- package/docs/v7/api/client.mdx +1 -1
- package/docs/v7/api/dashcam.mdx +2 -2
- package/docs/v7/api/elements.mdx +143 -41
- package/docs/v7/api/find.mdx +258 -0
- package/docs/v7/api/type.mdx +51 -7
- package/docs/v7/features/ai-native.mdx +427 -0
- package/docs/v7/features/easy-to-write.mdx +351 -0
- package/docs/v7/features/enterprise.mdx +540 -0
- package/docs/v7/features/fast.mdx +424 -0
- package/docs/v7/features/observable.mdx +623 -0
- package/docs/v7/features/powerful.mdx +531 -0
- package/docs/v7/features/scalable.mdx +417 -0
- package/docs/v7/features/stable.mdx +514 -0
- package/docs/v7/getting-started/configuration.mdx +1 -1
- package/docs/v7/getting-started/generating-tests.mdx +525 -0
- package/docs/v7/getting-started/installation.mdx +486 -0
- package/docs/v7/getting-started/quickstart.mdx +51 -5
- package/docs/v7/getting-started/running-and-debugging.mdx +511 -0
- package/docs/v7/getting-started/setting-up-in-ci.mdx +612 -0
- package/docs/v7/getting-started/writing-tests.mdx +535 -0
- package/docs/v7/overview/what-is-testdriver.mdx +398 -0
- package/docs/v7/playwright.mdx +3 -3
- package/docs/v7/presets/chrome.mdx +16 -0
- package/docs/v7/presets/electron.mdx +18 -0
- package/docs/v7/presets/vscode.mdx +19 -0
- package/examples/run-tests-with-recording.sh +70 -0
- package/examples/screenshot-example.js +63 -0
- package/examples/sdk-awesome-logs-demo.js +177 -0
- package/examples/sdk-cache-thresholds.js +96 -0
- package/examples/sdk-element-properties.js +155 -0
- package/examples/sdk-simple-example.js +65 -0
- package/examples/test-recording-example.test.js +166 -0
- package/interfaces/cli/commands/init.js +358 -0
- package/interfaces/vitest-plugin.mjs +214 -10
- package/{src → lib}/core/Dashcam.js +41 -4
- package/{src → lib}/vitest/hooks.mjs +118 -100
- package/lib/vitest/setup.mjs +44 -0
- package/package.json +9 -10
- package/sdk.d.ts +15 -2
- package/sdk.js +72 -17
- package/{self-hosted.yml → setup/aws/self-hosted.yml} +1 -1
- package/{testdriver/acceptance-sdk → test/manual}/test-console-logs.test.mjs +1 -1
- package/test/manual/test-find-api.js +73 -0
- package/test/manual/test-init.sh +54 -0
- package/test/manual/test-prompt-cache.js +96 -0
- package/test/manual/test-provision-auth.mjs +22 -0
- package/test/manual/test-sandbox-render.js +28 -0
- package/test/manual/test-sdk-methods.js +15 -0
- package/test/manual/test-sdk-refactor.js +53 -0
- package/test/manual/test-stack-trace.mjs +57 -0
- package/test/testdriver/assert.test.mjs +41 -0
- package/{testdriver/acceptance-sdk → test/testdriver}/auto-cache-key-demo.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/drag-and-drop.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/element-not-found.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/exec-js.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/exec-output.test.mjs +3 -3
- package/{testdriver/acceptance-sdk → test/testdriver}/exec-pwsh.test.mjs +3 -3
- package/{testdriver/acceptance-sdk → test/testdriver}/focus-window.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/formatted-logging.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/hover-image.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/hover-text-with-description.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/hover-text.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/match-image.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/press-keys.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/prompt.test.mjs +2 -2
- package/{testdriver/acceptance-sdk → test/testdriver}/scroll-keyboard.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/scroll-until-image.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/scroll-until-text.test.mjs +1 -1
- package/{testdriver/acceptance-sdk → test/testdriver}/scroll.test.mjs +1 -1
- package/{src/vitest/lifecycle.mjs → test/testdriver/setup/lifecycleHelpers.mjs} +84 -99
- package/test/testdriver/setup/testHelpers.mjs +653 -0
- package/{testdriver/acceptance-sdk → test/testdriver}/type.test.mjs +1 -1
- package/vitest.config.mjs +8 -59
- package/.github/dependabot.yml +0 -11
- package/.github/workflows/acceptance-linux.yml +0 -75
- package/.github/workflows/acceptance-sdk-tests.yml +0 -133
- package/.github/workflows/acceptance-tests.yml +0 -130
- package/.github/workflows/lint.yml +0 -27
- package/.github/workflows/publish-canary.yml +0 -40
- package/.github/workflows/publish-latest.yml +0 -61
- package/.github/workflows/test-install.yml +0 -29
- package/.vscode/extensions.json +0 -3
- package/.vscode/launch.json +0 -22
- package/.vscode/settings.json +0 -14
- package/AGENTS.md +0 -550
- package/CODEOWNERS +0 -2
- package/_testdriver/acceptance/assert.yaml +0 -7
- package/_testdriver/acceptance/dashcam.yaml +0 -9
- package/_testdriver/acceptance/drag-and-drop.yaml +0 -49
- package/_testdriver/acceptance/embed.yaml +0 -9
- package/_testdriver/acceptance/exec-js.yaml +0 -29
- package/_testdriver/acceptance/exec-output.yaml +0 -43
- package/_testdriver/acceptance/exec-shell.yaml +0 -40
- package/_testdriver/acceptance/focus-window.yaml +0 -16
- package/_testdriver/acceptance/hover-image.yaml +0 -18
- package/_testdriver/acceptance/hover-text-with-description.yaml +0 -29
- package/_testdriver/acceptance/hover-text.yaml +0 -14
- package/_testdriver/acceptance/if-else.yaml +0 -31
- package/_testdriver/acceptance/match-image.yaml +0 -15
- package/_testdriver/acceptance/press-keys.yaml +0 -35
- package/_testdriver/acceptance/prompt.yaml +0 -11
- package/_testdriver/acceptance/remember.yaml +0 -27
- package/_testdriver/acceptance/screenshots/cart.png +0 -0
- package/_testdriver/acceptance/scroll-keyboard.yaml +0 -34
- package/_testdriver/acceptance/scroll-until-image.yaml +0 -26
- package/_testdriver/acceptance/scroll-until-text.yaml +0 -20
- package/_testdriver/acceptance/scroll.yaml +0 -33
- package/_testdriver/acceptance/snippets/login.yaml +0 -29
- package/_testdriver/acceptance/snippets/match-cart.yaml +0 -8
- package/_testdriver/acceptance/type.yaml +0 -29
- package/_testdriver/behavior/failure.yaml +0 -7
- package/_testdriver/behavior/hover-text.yaml +0 -13
- package/_testdriver/behavior/lifecycle/postrun.yaml +0 -10
- package/_testdriver/behavior/lifecycle/prerun.yaml +0 -8
- package/_testdriver/behavior/lifecycle/provision.yaml +0 -8
- package/_testdriver/behavior/secrets.yaml +0 -7
- package/_testdriver/edge-cases/dashcam-chrome.yaml +0 -8
- package/_testdriver/edge-cases/exec-pwsh-multiline.yaml +0 -10
- package/_testdriver/edge-cases/js-exception.yaml +0 -8
- package/_testdriver/edge-cases/js-promise.yaml +0 -19
- package/_testdriver/edge-cases/lifecycle/postrun.yaml +0 -10
- package/_testdriver/edge-cases/prompt-in-middle.yaml +0 -23
- package/_testdriver/edge-cases/prompt-nested.yaml +0 -7
- package/_testdriver/edge-cases/success-test.yaml +0 -9
- package/_testdriver/examples/android/example.yaml +0 -12
- package/_testdriver/examples/android/lifecycle/postrun.yaml +0 -11
- package/_testdriver/examples/android/lifecycle/provision.yaml +0 -47
- package/_testdriver/examples/android/readme.md +0 -7
- package/_testdriver/examples/chrome-extension/lifecycle/provision.yaml +0 -74
- package/_testdriver/examples/desktop/lifecycle/prerun.yaml +0 -0
- package/_testdriver/examples/desktop/lifecycle/provision.yaml +0 -64
- package/_testdriver/examples/vscode-extension/lifecycle/provision.yaml +0 -73
- package/_testdriver/examples/web/lifecycle/postrun.yaml +0 -7
- package/_testdriver/examples/web/lifecycle/prerun.yaml +0 -22
- package/_testdriver/lifecycle/postrun.yaml +0 -8
- package/_testdriver/lifecycle/prerun.yaml +0 -15
- package/_testdriver/lifecycle/provision.yaml +0 -25
- package/docs/v7/guides/ci-cd/azure.mdx +0 -587
- package/docs/v7/guides/ci-cd/circleci.mdx +0 -523
- package/docs/v7/guides/ci-cd/github-actions.mdx +0 -457
- package/docs/v7/guides/ci-cd/gitlab.mdx +0 -498
- package/docs/v7/guides/ci-cd/jenkins.mdx +0 -664
- package/docs/v7/guides/ci-cd/travis.mdx +0 -438
- package/scripts/view-test-results.mjs +0 -96
- package/src/vitest/extended.mjs +0 -108
- package/src/vitest/index.mjs +0 -64
- package/src/vitest/utils.mjs +0 -150
- package/styles/.vale-config/2-MDX.ini +0 -5
- package/styles/Microsoft/AMPM.yml +0 -9
- package/styles/Microsoft/Accessibility.yml +0 -30
- package/styles/Microsoft/Acronyms.yml +0 -64
- package/styles/Microsoft/Adverbs.yml +0 -272
- package/styles/Microsoft/Auto.yml +0 -11
- package/styles/Microsoft/Avoid.yml +0 -14
- package/styles/Microsoft/Contractions.yml +0 -50
- package/styles/Microsoft/Dashes.yml +0 -13
- package/styles/Microsoft/DateFormat.yml +0 -8
- package/styles/Microsoft/DateNumbers.yml +0 -40
- package/styles/Microsoft/DateOrder.yml +0 -8
- package/styles/Microsoft/Ellipses.yml +0 -9
- package/styles/Microsoft/FirstPerson.yml +0 -16
- package/styles/Microsoft/Foreign.yml +0 -13
- package/styles/Microsoft/Gender.yml +0 -8
- package/styles/Microsoft/GenderBias.yml +0 -42
- package/styles/Microsoft/GeneralURL.yml +0 -11
- package/styles/Microsoft/HeadingAcronyms.yml +0 -7
- package/styles/Microsoft/HeadingColons.yml +0 -8
- package/styles/Microsoft/HeadingPunctuation.yml +0 -13
- package/styles/Microsoft/Headings.yml +0 -28
- package/styles/Microsoft/Hyphens.yml +0 -14
- package/styles/Microsoft/Negative.yml +0 -13
- package/styles/Microsoft/Ordinal.yml +0 -13
- package/styles/Microsoft/OxfordComma.yml +0 -8
- package/styles/Microsoft/Passive.yml +0 -183
- package/styles/Microsoft/Percentages.yml +0 -7
- package/styles/Microsoft/Plurals.yml +0 -7
- package/styles/Microsoft/Quotes.yml +0 -7
- package/styles/Microsoft/RangeTime.yml +0 -13
- package/styles/Microsoft/Semicolon.yml +0 -8
- package/styles/Microsoft/SentenceLength.yml +0 -6
- package/styles/Microsoft/Spacing.yml +0 -8
- package/styles/Microsoft/Suspended.yml +0 -7
- package/styles/Microsoft/Terms.yml +0 -42
- package/styles/Microsoft/URLFormat.yml +0 -9
- package/styles/Microsoft/Units.yml +0 -16
- package/styles/Microsoft/Vocab.yml +0 -25
- package/styles/Microsoft/We.yml +0 -11
- package/styles/Microsoft/Wordiness.yml +0 -127
- package/styles/Microsoft/meta.json +0 -4
- package/styles/alex/Ablist.yml +0 -274
- package/styles/alex/Condescending.yml +0 -16
- package/styles/alex/Gendered.yml +0 -110
- package/styles/alex/LGBTQ.yml +0 -55
- package/styles/alex/OCD.yml +0 -10
- package/styles/alex/Press.yml +0 -12
- package/styles/alex/ProfanityLikely.yml +0 -1289
- package/styles/alex/ProfanityMaybe.yml +0 -282
- package/styles/alex/ProfanityUnlikely.yml +0 -251
- package/styles/alex/README.md +0 -27
- package/styles/alex/Race.yml +0 -85
- package/styles/alex/Suicide.yml +0 -26
- package/styles/alex/meta.json +0 -4
- package/styles/config/vocabularies/Docs/accept.txt +0 -47
- package/styles/config/vocabularies/Docs/reject.txt +0 -4
- package/styles/proselint/Airlinese.yml +0 -8
- package/styles/proselint/AnimalLabels.yml +0 -48
- package/styles/proselint/Annotations.yml +0 -9
- package/styles/proselint/Apologizing.yml +0 -8
- package/styles/proselint/Archaisms.yml +0 -52
- package/styles/proselint/But.yml +0 -8
- package/styles/proselint/Cliches.yml +0 -782
- package/styles/proselint/CorporateSpeak.yml +0 -30
- package/styles/proselint/Currency.yml +0 -5
- package/styles/proselint/Cursing.yml +0 -15
- package/styles/proselint/DateCase.yml +0 -7
- package/styles/proselint/DateMidnight.yml +0 -7
- package/styles/proselint/DateRedundancy.yml +0 -10
- package/styles/proselint/DateSpacing.yml +0 -7
- package/styles/proselint/DenizenLabels.yml +0 -52
- package/styles/proselint/Diacritical.yml +0 -95
- package/styles/proselint/GenderBias.yml +0 -45
- package/styles/proselint/GroupTerms.yml +0 -39
- package/styles/proselint/Hedging.yml +0 -8
- package/styles/proselint/Hyperbole.yml +0 -6
- package/styles/proselint/Jargon.yml +0 -11
- package/styles/proselint/LGBTOffensive.yml +0 -13
- package/styles/proselint/LGBTTerms.yml +0 -15
- package/styles/proselint/Malapropisms.yml +0 -8
- package/styles/proselint/Needless.yml +0 -358
- package/styles/proselint/Nonwords.yml +0 -38
- package/styles/proselint/Oxymorons.yml +0 -22
- package/styles/proselint/P-Value.yml +0 -6
- package/styles/proselint/RASSyndrome.yml +0 -30
- package/styles/proselint/README.md +0 -12
- package/styles/proselint/Skunked.yml +0 -13
- package/styles/proselint/Spelling.yml +0 -17
- package/styles/proselint/Typography.yml +0 -11
- package/styles/proselint/Uncomparables.yml +0 -50
- package/styles/proselint/Very.yml +0 -6
- package/styles/proselint/meta.json +0 -15
- package/styles/write-good/Cliches.yml +0 -702
- package/styles/write-good/E-Prime.yml +0 -32
- package/styles/write-good/Illusions.yml +0 -11
- package/styles/write-good/Passive.yml +0 -183
- package/styles/write-good/README.md +0 -27
- package/styles/write-good/So.yml +0 -5
- package/styles/write-good/ThereIs.yml +0 -6
- package/styles/write-good/TooWordy.yml +0 -221
- package/styles/write-good/Weasel.yml +0 -29
- package/styles/write-good/meta.json +0 -4
- package/test/dashcam.test.js +0 -137
- package/test/mcp-example-test.yaml +0 -27
- package/test/test_parser.js +0 -47
- package/testdriver/acceptance-sdk/QUICK_REFERENCE.md +0 -61
- package/testdriver/acceptance-sdk/README.md +0 -128
- package/testdriver/acceptance-sdk/TEST_REPORTING.md +0 -245
- package/testdriver/acceptance-sdk/assert.test.mjs +0 -26
- package/testdriver/acceptance-sdk/hooks-example.test.mjs +0 -38
- package/testdriver/acceptance-sdk/presets-example.test.mjs +0 -87
- package/testdriver/acceptance-sdk/setup/testHelpers.mjs +0 -420
- package/testdriver/acceptance-sdk/sully-ai.test.mjs +0 -234
- package/testdriver/acceptance-sdk/type-checking-demo.js +0 -49
- package/vale.ini +0 -18
- package/vitest.config.example.js +0 -19
- package/vitest.config.mjs.bak +0 -44
- /package/docs/{ARCHITECTURE.md → v7/_drafts/architecture.mdx} +0 -0
- /package/docs/{AWESOME_LOGS_QUICK_REF.md → v7/_drafts/awesome-logs-quick-ref.mdx} +0 -0
- /package/docs/v7/{guides → _drafts}/best-practices.mdx +0 -0
- /package/docs/v7/{guides → _drafts}/caching-ai.mdx +0 -0
- /package/docs/v7/{guides → _drafts}/caching.mdx +0 -0
- /package/docs/{MIGRATION.md → v7/_drafts/cli-to-sdk-migration.mdx} +0 -0
- /package/{CONTRIBUTING.md → docs/v7/_drafts/contributing.mdx} +0 -0
- /package/docs/v7/{progressive-apis/CORE.md → _drafts/core.mdx} +0 -0
- /package/docs/v7/{guides → _drafts}/debugging.mdx +0 -0
- /package/docs/v7/{guides → _drafts}/faq.mdx +0 -0
- /package/docs/v7/{progressive-apis/HOOKS.md → _drafts/hooks.mdx} +0 -0
- /package/docs/v7/{guides → _drafts}/migration.mdx +0 -0
- /package/docs/v7/{guides → _drafts}/performance.mdx +0 -0
- /package/docs/{PRESETS.md → v7/_drafts/presets.mdx} +0 -0
- /package/docs/v7/{progressive-apis/PROGRESSIVE_DISCLOSURE.md → _drafts/progressive-disclosure.mdx} +0 -0
- /package/docs/v7/{progressive-apis/PROVISION.md → _drafts/provision.mdx} +0 -0
- /package/docs/{SDK_AWESOME_LOGS.md → v7/_drafts/sdk-awesome-logs.mdx} +0 -0
- /package/docs/{sdk-browser-rendering.md → v7/_drafts/sdk-browser-rendering.mdx} +0 -0
- /package/docs/{TEST_RECORDING.md → v7/_drafts/test-recording.mdx} +0 -0
- /package/docs/v7/{guides → _drafts}/vitest.mdx +0 -0
- /package/docs/v7/{README.md → overview/readme.mdx} +0 -0
- /package/{src → lib}/core/index.d.ts +0 -0
- /package/{src → lib}/core/index.js +0 -0
- /package/{src → lib}/presets/index.mjs +0 -0
- /package/{src → lib}/vitest/hooks.d.ts +0 -0
- /package/{debug-locate-response.js → test/manual/debug-locate-response.js} +0 -0
- /package/{verify-element-api.js → test/manual/verify-element-api.js} +0 -0
- /package/{verify-types.js → test/manual/verify-types.js} +0 -0
- /package/{testdriver/acceptance-sdk → test/testdriver}/chrome-extension.test.mjs +0 -0
- /package/{testdriver/acceptance-sdk → test/testdriver}/setup/globalTeardown.mjs +0 -0
- /package/{testdriver/acceptance-sdk → test/testdriver}/setup/vitestSetup.mjs +0 -0
|
@@ -1,282 +0,0 @@
|
|
|
1
|
-
extends: existence
|
|
2
|
-
message: Reconsider using '%s', it may be profane.
|
|
3
|
-
level: warning
|
|
4
|
-
ignorecase: true
|
|
5
|
-
tokens:
|
|
6
|
-
- abbo
|
|
7
|
-
- abid
|
|
8
|
-
- abo
|
|
9
|
-
- abortion
|
|
10
|
-
- abuse
|
|
11
|
-
- addict
|
|
12
|
-
- addicts
|
|
13
|
-
- alla
|
|
14
|
-
- anal
|
|
15
|
-
- analsex
|
|
16
|
-
- anus
|
|
17
|
-
- areola
|
|
18
|
-
- athletesfoot
|
|
19
|
-
- attack
|
|
20
|
-
- australian
|
|
21
|
-
- babe
|
|
22
|
-
- banging
|
|
23
|
-
- bastard
|
|
24
|
-
- beastality
|
|
25
|
-
- beastial
|
|
26
|
-
- beastiality
|
|
27
|
-
- bicurious
|
|
28
|
-
- bitch
|
|
29
|
-
- bitches
|
|
30
|
-
- blackman
|
|
31
|
-
- blacks
|
|
32
|
-
- bondage
|
|
33
|
-
- boob
|
|
34
|
-
- boobs
|
|
35
|
-
- "bounty bar"
|
|
36
|
-
- "bounty bars"
|
|
37
|
-
- bountybar
|
|
38
|
-
- brothel
|
|
39
|
-
- buttplug
|
|
40
|
-
- clit
|
|
41
|
-
- clitoris
|
|
42
|
-
- cocaine
|
|
43
|
-
- cock
|
|
44
|
-
- coitus
|
|
45
|
-
- condom
|
|
46
|
-
- copulate
|
|
47
|
-
- cra5h
|
|
48
|
-
- crack
|
|
49
|
-
- cracker
|
|
50
|
-
- crackpipe
|
|
51
|
-
- crotch
|
|
52
|
-
- cunilingus
|
|
53
|
-
- cunillingus
|
|
54
|
-
- cybersex
|
|
55
|
-
- damn
|
|
56
|
-
- damnation
|
|
57
|
-
- defecate
|
|
58
|
-
- demon
|
|
59
|
-
- devil
|
|
60
|
-
- devilworshipper
|
|
61
|
-
- dick
|
|
62
|
-
- dike
|
|
63
|
-
- dildo
|
|
64
|
-
- drug
|
|
65
|
-
- drunk
|
|
66
|
-
- drunken
|
|
67
|
-
- dyke
|
|
68
|
-
- ejaculate
|
|
69
|
-
- ejaculated
|
|
70
|
-
- ejaculating
|
|
71
|
-
- ejaculation
|
|
72
|
-
- enema
|
|
73
|
-
- erection
|
|
74
|
-
- excrement
|
|
75
|
-
- fag
|
|
76
|
-
- fart
|
|
77
|
-
- farted
|
|
78
|
-
- farting
|
|
79
|
-
- feces
|
|
80
|
-
- felatio
|
|
81
|
-
- fetish
|
|
82
|
-
- fingerfood
|
|
83
|
-
- flasher
|
|
84
|
-
- flatulence
|
|
85
|
-
- fondle
|
|
86
|
-
- footaction
|
|
87
|
-
- foreskin
|
|
88
|
-
- foursome
|
|
89
|
-
- fourtwenty
|
|
90
|
-
- fruitcake
|
|
91
|
-
- gable
|
|
92
|
-
- genital
|
|
93
|
-
- gob
|
|
94
|
-
- god
|
|
95
|
-
- gonzagas
|
|
96
|
-
- goy
|
|
97
|
-
- goyim
|
|
98
|
-
- groe
|
|
99
|
-
- gross
|
|
100
|
-
- grostulation
|
|
101
|
-
- gub
|
|
102
|
-
- guinea
|
|
103
|
-
- guineas
|
|
104
|
-
- guizi
|
|
105
|
-
- hamas
|
|
106
|
-
- hebephila
|
|
107
|
-
- hebephile
|
|
108
|
-
- hebephiles
|
|
109
|
-
- hebephilia
|
|
110
|
-
- hebephilic
|
|
111
|
-
- heroin
|
|
112
|
-
- herpes
|
|
113
|
-
- hiv
|
|
114
|
-
- homicide
|
|
115
|
-
- horney
|
|
116
|
-
- ike
|
|
117
|
-
- ikes
|
|
118
|
-
- ikey
|
|
119
|
-
- illegals
|
|
120
|
-
- incest
|
|
121
|
-
- intercourse
|
|
122
|
-
- interracial
|
|
123
|
-
- italiano
|
|
124
|
-
- jerries
|
|
125
|
-
- jerry
|
|
126
|
-
- jesus
|
|
127
|
-
- jesuschrist
|
|
128
|
-
- jihad
|
|
129
|
-
- kink
|
|
130
|
-
- kinky
|
|
131
|
-
- knockers
|
|
132
|
-
- kock
|
|
133
|
-
- kotex
|
|
134
|
-
- kraut
|
|
135
|
-
- ky
|
|
136
|
-
- lactate
|
|
137
|
-
- lapdance
|
|
138
|
-
- libido
|
|
139
|
-
- licker
|
|
140
|
-
- liquor
|
|
141
|
-
- lolita
|
|
142
|
-
- lsd
|
|
143
|
-
- lynch
|
|
144
|
-
- mafia
|
|
145
|
-
- marijuana
|
|
146
|
-
- meth
|
|
147
|
-
- mick
|
|
148
|
-
- molest
|
|
149
|
-
- molestation
|
|
150
|
-
- molester
|
|
151
|
-
- molestor
|
|
152
|
-
- murder
|
|
153
|
-
- narcotic
|
|
154
|
-
- nazi
|
|
155
|
-
- necro
|
|
156
|
-
- nigerian
|
|
157
|
-
- nigerians
|
|
158
|
-
- nipple
|
|
159
|
-
- nipplering
|
|
160
|
-
- nook
|
|
161
|
-
- nooner
|
|
162
|
-
- nude
|
|
163
|
-
- nuke
|
|
164
|
-
- nymph
|
|
165
|
-
- oral
|
|
166
|
-
- orgasm
|
|
167
|
-
- orgies
|
|
168
|
-
- orgy
|
|
169
|
-
- paddy
|
|
170
|
-
- paederastic
|
|
171
|
-
- paederasts
|
|
172
|
-
- paederasty
|
|
173
|
-
- pearlnecklace
|
|
174
|
-
- peck
|
|
175
|
-
- pecker
|
|
176
|
-
- pederastic
|
|
177
|
-
- pederasts
|
|
178
|
-
- pederasty
|
|
179
|
-
- pedophile
|
|
180
|
-
- pedophiles
|
|
181
|
-
- pedophilia
|
|
182
|
-
- pedophilic
|
|
183
|
-
- pee
|
|
184
|
-
- peepshow
|
|
185
|
-
- pendy
|
|
186
|
-
- penetration
|
|
187
|
-
- penile
|
|
188
|
-
- penis
|
|
189
|
-
- penises
|
|
190
|
-
- penthouse
|
|
191
|
-
- phonesex
|
|
192
|
-
- pistol
|
|
193
|
-
- pixie
|
|
194
|
-
- pixy
|
|
195
|
-
- playboy
|
|
196
|
-
- playgirl
|
|
197
|
-
- porn
|
|
198
|
-
- pornflick
|
|
199
|
-
- porno
|
|
200
|
-
- pornography
|
|
201
|
-
- prostitute
|
|
202
|
-
- protestant
|
|
203
|
-
- pube
|
|
204
|
-
- pubic
|
|
205
|
-
- pussy
|
|
206
|
-
- pussycat
|
|
207
|
-
- queer
|
|
208
|
-
- racist
|
|
209
|
-
- radical
|
|
210
|
-
- radicals
|
|
211
|
-
- randy
|
|
212
|
-
- rape
|
|
213
|
-
- raped
|
|
214
|
-
- raper
|
|
215
|
-
- rapist
|
|
216
|
-
- rectum
|
|
217
|
-
- ribbed
|
|
218
|
-
- satan
|
|
219
|
-
- scag
|
|
220
|
-
- scat
|
|
221
|
-
- screw
|
|
222
|
-
- scrotum
|
|
223
|
-
- scum
|
|
224
|
-
- semen
|
|
225
|
-
- septic
|
|
226
|
-
- septics
|
|
227
|
-
- sex
|
|
228
|
-
- sexhouse
|
|
229
|
-
- sextoy
|
|
230
|
-
- sextoys
|
|
231
|
-
- sexual
|
|
232
|
-
- sexually
|
|
233
|
-
- sexy
|
|
234
|
-
- shag
|
|
235
|
-
- shinola
|
|
236
|
-
- shit
|
|
237
|
-
- slaughter
|
|
238
|
-
- smack
|
|
239
|
-
- snatch
|
|
240
|
-
- sniggers
|
|
241
|
-
- sodom
|
|
242
|
-
- sodomite
|
|
243
|
-
- spade
|
|
244
|
-
- spank
|
|
245
|
-
- sperm
|
|
246
|
-
- stagg
|
|
247
|
-
- stiffy
|
|
248
|
-
- strapon
|
|
249
|
-
- stroking
|
|
250
|
-
- suck
|
|
251
|
-
- suicide
|
|
252
|
-
- swallow
|
|
253
|
-
- swastika
|
|
254
|
-
- syphilis
|
|
255
|
-
- tantra
|
|
256
|
-
- teat
|
|
257
|
-
- terrorist
|
|
258
|
-
- testicle
|
|
259
|
-
- testicles
|
|
260
|
-
- threesome
|
|
261
|
-
- tinkle
|
|
262
|
-
- tit
|
|
263
|
-
- tits
|
|
264
|
-
- tnt
|
|
265
|
-
- torture
|
|
266
|
-
- tramp
|
|
267
|
-
- trap
|
|
268
|
-
- trisexual
|
|
269
|
-
- trots
|
|
270
|
-
- turd
|
|
271
|
-
- uterus
|
|
272
|
-
- vagina
|
|
273
|
-
- vaginal
|
|
274
|
-
- vibrator
|
|
275
|
-
- vulva
|
|
276
|
-
- whit
|
|
277
|
-
- whites
|
|
278
|
-
- willy
|
|
279
|
-
- xtc
|
|
280
|
-
- xxx
|
|
281
|
-
- yankee
|
|
282
|
-
- yankees
|
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
extends: existence
|
|
2
|
-
message: Be careful with '%s', it's profane in some cases.
|
|
3
|
-
level: warning
|
|
4
|
-
ignorecase: true
|
|
5
|
-
tokens:
|
|
6
|
-
- adult
|
|
7
|
-
- africa
|
|
8
|
-
- african
|
|
9
|
-
- allah
|
|
10
|
-
- amateur
|
|
11
|
-
- american
|
|
12
|
-
- angie
|
|
13
|
-
- angry
|
|
14
|
-
- arab
|
|
15
|
-
- arabs
|
|
16
|
-
- aroused
|
|
17
|
-
- asian
|
|
18
|
-
- assassin
|
|
19
|
-
- assassinate
|
|
20
|
-
- assassination
|
|
21
|
-
- assault
|
|
22
|
-
- attack
|
|
23
|
-
- australian
|
|
24
|
-
- babies
|
|
25
|
-
- backdoor
|
|
26
|
-
- backseat
|
|
27
|
-
- banana
|
|
28
|
-
- bananas
|
|
29
|
-
- baptist
|
|
30
|
-
- bast
|
|
31
|
-
- beast
|
|
32
|
-
- beaver
|
|
33
|
-
- bi
|
|
34
|
-
- bigger
|
|
35
|
-
- bisexual
|
|
36
|
-
- blackout
|
|
37
|
-
- blind
|
|
38
|
-
- blow
|
|
39
|
-
- bomb
|
|
40
|
-
- bombers
|
|
41
|
-
- bombing
|
|
42
|
-
- bombs
|
|
43
|
-
- bomd
|
|
44
|
-
- boom
|
|
45
|
-
- bosch
|
|
46
|
-
- bra
|
|
47
|
-
- breast
|
|
48
|
-
- brownie
|
|
49
|
-
- brownies
|
|
50
|
-
- buffy
|
|
51
|
-
- burn
|
|
52
|
-
- butt
|
|
53
|
-
- canadian
|
|
54
|
-
- cancer
|
|
55
|
-
- catholic
|
|
56
|
-
- catholics
|
|
57
|
-
- cemetery
|
|
58
|
-
- childrens
|
|
59
|
-
- chin
|
|
60
|
-
- chinese
|
|
61
|
-
- christ
|
|
62
|
-
- christian
|
|
63
|
-
- church
|
|
64
|
-
- cigarette
|
|
65
|
-
- cigs
|
|
66
|
-
- cocktail
|
|
67
|
-
- coconut
|
|
68
|
-
- coconuts
|
|
69
|
-
- color
|
|
70
|
-
- colored
|
|
71
|
-
- coloured
|
|
72
|
-
- communist
|
|
73
|
-
- conservative
|
|
74
|
-
- conspiracy
|
|
75
|
-
- corruption
|
|
76
|
-
- crabs
|
|
77
|
-
- crash
|
|
78
|
-
- creamy
|
|
79
|
-
- criminal
|
|
80
|
-
- criminals
|
|
81
|
-
- dead
|
|
82
|
-
- death
|
|
83
|
-
- deposit
|
|
84
|
-
- desire
|
|
85
|
-
- destroy
|
|
86
|
-
- deth
|
|
87
|
-
- die
|
|
88
|
-
- died
|
|
89
|
-
- dies
|
|
90
|
-
- dirty
|
|
91
|
-
- disease
|
|
92
|
-
- diseases
|
|
93
|
-
- disturbed
|
|
94
|
-
- dive
|
|
95
|
-
- doom
|
|
96
|
-
- ecstacy
|
|
97
|
-
- enemy
|
|
98
|
-
- erect
|
|
99
|
-
- escort
|
|
100
|
-
- ethiopian
|
|
101
|
-
- ethnic
|
|
102
|
-
- european
|
|
103
|
-
- execute
|
|
104
|
-
- executed
|
|
105
|
-
- execution
|
|
106
|
-
- executioner
|
|
107
|
-
- explosion
|
|
108
|
-
- failed
|
|
109
|
-
- failure
|
|
110
|
-
- fairies
|
|
111
|
-
- fairy
|
|
112
|
-
- faith
|
|
113
|
-
- fat
|
|
114
|
-
- fear
|
|
115
|
-
- fight
|
|
116
|
-
- filipina
|
|
117
|
-
- filipino
|
|
118
|
-
- fire
|
|
119
|
-
- firing
|
|
120
|
-
- fore
|
|
121
|
-
- fraud
|
|
122
|
-
- funeral
|
|
123
|
-
- fungus
|
|
124
|
-
- gay
|
|
125
|
-
- german
|
|
126
|
-
- gin
|
|
127
|
-
- girls
|
|
128
|
-
- gun
|
|
129
|
-
- harder
|
|
130
|
-
- harem
|
|
131
|
-
- headlights
|
|
132
|
-
- hell
|
|
133
|
-
- henhouse
|
|
134
|
-
- heterosexual
|
|
135
|
-
- hijack
|
|
136
|
-
- hijacker
|
|
137
|
-
- hijacking
|
|
138
|
-
- hole
|
|
139
|
-
- honk
|
|
140
|
-
- hook
|
|
141
|
-
- horn
|
|
142
|
-
- hostage
|
|
143
|
-
- hummer
|
|
144
|
-
- hun
|
|
145
|
-
- huns
|
|
146
|
-
- husky
|
|
147
|
-
- hustler
|
|
148
|
-
- illegal
|
|
149
|
-
- israel
|
|
150
|
-
- israeli
|
|
151
|
-
- israels
|
|
152
|
-
- itch
|
|
153
|
-
- jade
|
|
154
|
-
- japanese
|
|
155
|
-
- jerry
|
|
156
|
-
- jew
|
|
157
|
-
- jewish
|
|
158
|
-
- joint
|
|
159
|
-
- jugs
|
|
160
|
-
- kid
|
|
161
|
-
- kill
|
|
162
|
-
- killed
|
|
163
|
-
- killer
|
|
164
|
-
- killing
|
|
165
|
-
- kills
|
|
166
|
-
- kimchi
|
|
167
|
-
- knife
|
|
168
|
-
- laid
|
|
169
|
-
- latin
|
|
170
|
-
- lesbian
|
|
171
|
-
- liberal
|
|
172
|
-
- lies
|
|
173
|
-
- lingerie
|
|
174
|
-
- lotion
|
|
175
|
-
- lucifer
|
|
176
|
-
- mad
|
|
177
|
-
- mexican
|
|
178
|
-
- mideast
|
|
179
|
-
- minority
|
|
180
|
-
- moles
|
|
181
|
-
- mormon
|
|
182
|
-
- muslim
|
|
183
|
-
- naked
|
|
184
|
-
- nasty
|
|
185
|
-
- niger
|
|
186
|
-
- niggardly
|
|
187
|
-
- oreo
|
|
188
|
-
- oreos
|
|
189
|
-
- osama
|
|
190
|
-
- palestinian
|
|
191
|
-
- panties
|
|
192
|
-
- penthouse
|
|
193
|
-
- period
|
|
194
|
-
- pot
|
|
195
|
-
- poverty
|
|
196
|
-
- premature
|
|
197
|
-
- primetime
|
|
198
|
-
- propaganda
|
|
199
|
-
- pros
|
|
200
|
-
- que
|
|
201
|
-
- rabbi
|
|
202
|
-
- racial
|
|
203
|
-
- redlight
|
|
204
|
-
- refugee
|
|
205
|
-
- reject
|
|
206
|
-
- remains
|
|
207
|
-
- republican
|
|
208
|
-
- roach
|
|
209
|
-
- robber
|
|
210
|
-
- rump
|
|
211
|
-
- servant
|
|
212
|
-
- shoot
|
|
213
|
-
- shooting
|
|
214
|
-
- showtime
|
|
215
|
-
- sick
|
|
216
|
-
- slant
|
|
217
|
-
- slav
|
|
218
|
-
- slime
|
|
219
|
-
- slope
|
|
220
|
-
- slopes
|
|
221
|
-
- snigger
|
|
222
|
-
- sniggered
|
|
223
|
-
- sniggering
|
|
224
|
-
- sniggers
|
|
225
|
-
- sniper
|
|
226
|
-
- snot
|
|
227
|
-
- sob
|
|
228
|
-
- sos
|
|
229
|
-
- soviet
|
|
230
|
-
- spa
|
|
231
|
-
- stroke
|
|
232
|
-
- sweetness
|
|
233
|
-
- taboo
|
|
234
|
-
- tampon
|
|
235
|
-
- terror
|
|
236
|
-
- toilet
|
|
237
|
-
- tongue
|
|
238
|
-
- transexual
|
|
239
|
-
- transsexual
|
|
240
|
-
- trojan
|
|
241
|
-
- uk
|
|
242
|
-
- urinary
|
|
243
|
-
- urinate
|
|
244
|
-
- urine
|
|
245
|
-
- vatican
|
|
246
|
-
- vietcong
|
|
247
|
-
- violence
|
|
248
|
-
- virgin
|
|
249
|
-
- weapon
|
|
250
|
-
- whiskey
|
|
251
|
-
- womens
|
package/styles/alex/README.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
Based on [alex](https://github.com/get-alex/alex).
|
|
2
|
-
|
|
3
|
-
> Catch insensitive, inconsiderate writing
|
|
4
|
-
|
|
5
|
-
```
|
|
6
|
-
(The MIT License)
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
|
|
9
|
-
|
|
10
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
-
in the Software without restriction, including without limitation the rights
|
|
13
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
-
|
|
17
|
-
The above copyright notice and this permission notice shall be included in
|
|
18
|
-
all copies or substantial portions of the Software.
|
|
19
|
-
|
|
20
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
26
|
-
THE SOFTWARE.
|
|
27
|
-
```
|
package/styles/alex/Race.yml
DELETED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
extends: substitution
|
|
3
|
-
message: Consider using '%s' instead of '%s'.
|
|
4
|
-
ignorecase: true
|
|
5
|
-
level: warning
|
|
6
|
-
action:
|
|
7
|
-
name: replace
|
|
8
|
-
swap:
|
|
9
|
-
Gipsy: Nomad|Traveler|Roma|Romani
|
|
10
|
-
Indian country: enemy territory
|
|
11
|
-
animal spirit: favorite|inspiration|personal interest|personality type
|
|
12
|
-
black list: blocklist|wronglist|banlist|deny list
|
|
13
|
-
blacklist: blocklist|wronglist|banlist|deny list
|
|
14
|
-
blacklisted: blocklisted|wronglisted|banlisted|deny-listed
|
|
15
|
-
blacklisting: blocklisting|wronglisting|banlisting|deny-listing
|
|
16
|
-
bugreport: bug report|snapshot
|
|
17
|
-
circle the wagons: defend
|
|
18
|
-
dream catcher: favorite|inspiration|personal interest|personality type
|
|
19
|
-
eskimo: Inuit
|
|
20
|
-
eskimos: Inuits
|
|
21
|
-
ghetto: projects|urban
|
|
22
|
-
goy: a person who is not Jewish|not Jewish
|
|
23
|
-
goyim: a person who is not Jewish|not Jewish
|
|
24
|
-
goyum: a person who is not Jewish|not Jewish
|
|
25
|
-
grandfather clause: legacy policy|legacy clause|deprecation policy
|
|
26
|
-
grandfather policy: legacy policy|legacy clause|deprecation policy
|
|
27
|
-
grandfathered: deprecated
|
|
28
|
-
grandfathering: deprecate
|
|
29
|
-
gyp: Nomad|Traveler|Roma|Romani
|
|
30
|
-
gyppo: Nomad|Traveler|Roma|Romani
|
|
31
|
-
gypsy: Nomad|Traveler|Roma|Romani
|
|
32
|
-
hymie: Jewish person
|
|
33
|
-
indian give: "go back on one\u2019s offer"
|
|
34
|
-
indian giver: "go back on one\u2019s offer"
|
|
35
|
-
japs: Japanese person|Japanese people
|
|
36
|
-
jump the reservation: disobey|endure|object to|oppose|resist
|
|
37
|
-
latina: Latinx
|
|
38
|
-
latino: Latinx
|
|
39
|
-
long time no hear:
|
|
40
|
-
"I haven\u2019t seen you in a long time|it\u2019s been a long\
|
|
41
|
-
\ time"
|
|
42
|
-
long time no see:
|
|
43
|
-
"I haven\u2019t seen you in a long time|it\u2019s been a long\
|
|
44
|
-
\ time"
|
|
45
|
-
master: primary|hub|reference
|
|
46
|
-
masters: primaries|hubs|references
|
|
47
|
-
mexican: Latinx
|
|
48
|
-
natives are becoming restless: dissatisfied|frustrated
|
|
49
|
-
natives are getting restless: dissatisfied|frustrated
|
|
50
|
-
natives are growing restless: dissatisfied|frustrated
|
|
51
|
-
natives are restless: dissatisfied|frustrated
|
|
52
|
-
non white: person of color|people of color
|
|
53
|
-
nonwhite: person of color|people of color
|
|
54
|
-
off reserve: disobey|endure|object to|oppose|resist
|
|
55
|
-
off the reservation: disobey|endure|object to|oppose|resist
|
|
56
|
-
on the warpath: defend
|
|
57
|
-
oriental: Asian person
|
|
58
|
-
orientals: Asian people
|
|
59
|
-
pinays: Filipinos|Filipino people
|
|
60
|
-
pinoys: Filipinos|Filipino people
|
|
61
|
-
pocahontas: Native American
|
|
62
|
-
pow wow: conference|gathering|meeting
|
|
63
|
-
powwow: conference|gathering|meeting
|
|
64
|
-
primitive: simple|indigenous|hunter-gatherer
|
|
65
|
-
red indian: Native American
|
|
66
|
-
red indians: Native American People
|
|
67
|
-
redskin: Native American
|
|
68
|
-
redskins: Native American People
|
|
69
|
-
sand niggers: Arabs|Middle Eastern People
|
|
70
|
-
savage: simple|indigenous|hunter-gatherer
|
|
71
|
-
shlomo: Jewish person
|
|
72
|
-
shyster: Jewish person
|
|
73
|
-
sophisticated culture: complex culture
|
|
74
|
-
sophisticated technology: complex technology
|
|
75
|
-
spade: a Black person
|
|
76
|
-
spirit animal: favorite|inspiration|personal interest|personality type
|
|
77
|
-
stone age: simple|indigenous|hunter-gatherer
|
|
78
|
-
too many chiefs: too many chefs in the kitchen|too many cooks spoil the broth
|
|
79
|
-
totem: favorite|inspiration|personal interest|personality type
|
|
80
|
-
towel heads: Arabs|Middle Eastern People
|
|
81
|
-
tribe: society|community
|
|
82
|
-
white list: passlist|alrightlist|safelist|allow list
|
|
83
|
-
whitelist: passlist|alrightlist|safelist|allow list
|
|
84
|
-
whitelisted: passlisted|alrightlisted|safelisted|allow-listed
|
|
85
|
-
whitelisting: passlisting|alrightlisting|safelisting|allow-listing
|
package/styles/alex/Suicide.yml
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
extends: substitution
|
|
3
|
-
message: Consider using '%s' instead of '%s' (which may be insensitive).
|
|
4
|
-
ignorecase: true
|
|
5
|
-
level: warning
|
|
6
|
-
action:
|
|
7
|
-
name: replace
|
|
8
|
-
swap:
|
|
9
|
-
commit suicide: die by suicide
|
|
10
|
-
committed suicide: died by suicide
|
|
11
|
-
complete suicide: die by suicide
|
|
12
|
-
completed suicide: died by suicide
|
|
13
|
-
epidemic of suicides: rise in suicides
|
|
14
|
-
failed attempt: suicide attempt|attempted suicide
|
|
15
|
-
failed suicide: suicide attempt|attempted suicide
|
|
16
|
-
hang:
|
|
17
|
-
the app froze|the app stopped responding|the app stopped responding to events|the
|
|
18
|
-
app became unresponsive
|
|
19
|
-
hanged:
|
|
20
|
-
the app froze|the app stopped responding|the app stopped responding to events|the
|
|
21
|
-
app became unresponsive
|
|
22
|
-
successful suicide: die by suicide
|
|
23
|
-
suicide epidemic: rise in suicides
|
|
24
|
-
suicide failure: suicide attempt|attempted suicide
|
|
25
|
-
suicide note: a note from the deceased
|
|
26
|
-
suicide pact: rise in suicides
|
package/styles/alex/meta.json
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
testdriverai
|
|
2
|
-
TestDriver
|
|
3
|
-
(?i)npm
|
|
4
|
-
(?i)csv
|
|
5
|
-
Sonoma
|
|
6
|
-
[Pp]rerun
|
|
7
|
-
Protip
|
|
8
|
-
Protips
|
|
9
|
-
VS Code
|
|
10
|
-
VSIX
|
|
11
|
-
OAuth2?
|
|
12
|
-
Dashcam
|
|
13
|
-
VM[s]?
|
|
14
|
-
OCR
|
|
15
|
-
[Cc]hatbot|s
|
|
16
|
-
[Ss]electorless
|
|
17
|
-
[Ww]alkthrough
|
|
18
|
-
[Ss]ignup
|
|
19
|
-
(?i)PDF|s
|
|
20
|
-
Vercel
|
|
21
|
-
Netlify
|
|
22
|
-
[Jj]ira
|
|
23
|
-
RBAC
|
|
24
|
-
SSL
|
|
25
|
-
GitHub Action|s
|
|
26
|
-
GitHub
|
|
27
|
-
[Vv]iewport
|
|
28
|
-
TestRail
|
|
29
|
-
YAML
|
|
30
|
-
Gherkin
|
|
31
|
-
Arc Browser
|
|
32
|
-
Touchpoint
|
|
33
|
-
[Hh]ardcod|ed|ing
|
|
34
|
-
[Ff]ullscreen
|
|
35
|
-
AJAX
|
|
36
|
-
[Tt]eardown
|
|
37
|
-
validator
|
|
38
|
-
OTP[s]?
|
|
39
|
-
Reusability
|
|
40
|
-
[Aa]sync
|
|
41
|
-
XPath
|
|
42
|
-
[Aa]uto-heal|ed|ing
|
|
43
|
-
[Oo]nboarding
|
|
44
|
-
Webkit
|
|
45
|
-
[Rr]ollout
|
|
46
|
-
[Bb]ackend
|
|
47
|
-
Cleanshot
|