Skip to content

Commit

Permalink
Merge pull request #379 from Sage/ts-refactor
Browse files Browse the repository at this point in the history
TypeScript refactor
  • Loading branch information
druhill authored Dec 3, 2024
2 parents a28b2ee + c785392 commit 54a2e36
Show file tree
Hide file tree
Showing 53 changed files with 2,847 additions and 3,104 deletions.
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

0 comments on commit 54a2e36

Please sign in to comment.