mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-07 07:59:26 +02:00
* Added rudimentary test matchers for `toEqualArrayUnsorted` and `toHaveTypes` Might port the rest at a later date * Actually run the effing setup matchers file + fixed ls lint to not be angy * added dev dep * Update .ls-lint.yml * Update .ls-lint.yml --------- Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Co-authored-by: Amani H. <109637146+xsn34kzx@users.noreply.github.com>
29 lines
598 B
YAML
29 lines
598 B
YAML
# Base settings to use
|
|
# Note that the `_cfg` key isn't part of ls-lint's configuration, it's just a YAML anchor for reuse.
|
|
_cfg: &cfg
|
|
.ps1: kebab-case
|
|
.ts: kebab-case
|
|
.js: kebab-case
|
|
.*.ts: kebab-case
|
|
.*.js: kebab-case
|
|
.dir: kebab-case
|
|
.py: snake_case # python files should always use snake_case
|
|
|
|
ls:
|
|
<<: *cfg
|
|
src: &src
|
|
<<: *cfg
|
|
.dir: kebab-case | regex:@types
|
|
.js: exists:0
|
|
src/system/version-migration/versions:
|
|
.ts: snake_case
|
|
<<: *cfg
|
|
test: *src
|
|
ignore:
|
|
- node_modules
|
|
- .vscode
|
|
- .github
|
|
- .git
|
|
- public
|
|
- dist
|