Skip to content

Commit

Permalink
Merge branch 'master' into ifonedge
Browse files Browse the repository at this point in the history
  • Loading branch information
adroitwhiz committed Mar 3, 2024
2 parents 5186824 + 2e90e2d commit a56e96d
Show file tree
Hide file tree
Showing 36 changed files with 2,748 additions and 3,195 deletions.
31 changes: 28 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,38 @@
"ecmaVersion": 9,
"sourceType": "module"
},
"plugins": ["prettier"],
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"env": {
"browser": true,
"es6": true
},
"rules": {
"no-console": ["warn", {"allow": ["warn", "error"]}]
}
},
"overrides": [
{
"files": ["src/**/*"],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.json"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"env": {
"browser": true
},
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-member-accessibility": "error",
"@typescript-eslint/prefer-return-this-type": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}]
}
}
]
}
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# node-version: 20
# - run: npm ci
# - run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
node_modules
dist/
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Copyright (c) 2020, Josh Pullen <hello@joshuapullen.com>
Copyright (c) 2020, adroitwhiz <adroitwhiz@protonmail.com>
Copyright (c) 2020, Florrie Haero Miller <towerofnix@gmail.com>
Copyright (c) 2020, Quasar Nebula <qznebula@protonmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading

0 comments on commit a56e96d

Please sign in to comment.