Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeScript refactor #379

Merged
merged 15 commits into from
Dec 3, 2024
25 changes: 0 additions & 25 deletions .eslintrc.js

This file was deleted.

10 changes: 0 additions & 10 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,6 @@ jobs:
- name: Install
run: yarn install --frozen-lockfile

# Install your linters here
- name: Run linters
uses: wearerequired/lint-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
eslint: true
auto_fix: true
git_name: github-actions[bot]
git_email: github-actions[bot]@users.noreply.github.com

- name: Build project
run: npm run build

Expand Down
10 changes: 0 additions & 10 deletions .mocharc.js

This file was deleted.

10 changes: 10 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"parallel": true,
"recursive": true,
"require": ["tsx"],
"spec": [
"scripts/**/*.spec.ts"
],
"extension": ["js", "cjs", "mjs", "ts"]
}

23 changes: 0 additions & 23 deletions .stylelintrc.js

This file was deleted.

14 changes: 14 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

{
"extends": ["stylelint-config-standard", "stylelint-config-standard-scss"],
"rules": {
"alpha-value-notation": null,
"color-function-notation": null,
"color-hex-length": null,
"comment-whitespace-inside": null,
"length-zero-no-unit": null,
"scss/comment-no-empty": null,
"scss/operator-no-unspaced": null,
"value-keyword-case": null
}
}
Loading
Loading