Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ quote_type = single

[*.py]
indent_size = 4

[.husky/*]
end_of_line = lf
321 changes: 0 additions & 321 deletions .eslintrc.cjs

This file was deleted.

1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* text eol=crlf
.husky/.* text eof=lf

*.png binary
*.ogg binary
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/auto-label.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* export GH_TOKEN=**** GITHUB_REPOSITORY=OverlayPlugin/cactbot PR_NUMBER=$NUM
* node ./.github/scripts/auto-label.cjs
*/
'use strict';

const path = require('path');

const json5 = require('json5');
Expand Down
1 change: 0 additions & 1 deletion .github/scripts/lint-pr-title.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* export GH_TOKEN=**** GITHUB_REPOSITORY=OverlayPlugin/cactbot PR_NUMBER=$NUM
* node ./.github/scripts/lint-pr-title.cjs
*/
'use strict';

const github = require('@actions/github');
const levenshtein = require('fast-levenshtein');
Expand Down
1 change: 0 additions & 1 deletion .github/scripts/lint-workflow.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
'use strict';
const fs = require('fs');
const path = require('path');

Expand Down
1 change: 0 additions & 1 deletion .github/scripts/npm-package.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
'use strict';
const fs = require('fs');
const path = require('path');

Expand Down
1 change: 0 additions & 1 deletion .github/scripts/pr-review.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* set GH_TOKEN=**** GITHUB_REPOSITORY=OverlayPlugin/cactbot
* node ./.github/scripts/pr-review.cjs
*/
'use strict';

const github = require('@actions/github');
const { execSync } = require('child_process');
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ bin/
obj/
packages/
user/
.husky/_

!user/README.txt
plugin/**/*.csproj.user
Expand Down
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
npm run lint-staged
npm test
12 changes: 12 additions & 0 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
"default": true,
"MD013": false,
"MD033": false,
// @TODO: These rules disabled as part of markdownlint update
// Fix the underlying problems in a follow up PR
"MD034": false,
"MD045": false,
"MD059": false,
"MD060": false
}
2 changes: 0 additions & 2 deletions .markdownlint.yml

This file was deleted.

Loading
Loading