Skip to content

Commit

Permalink
Merge branch 'develop' into var-to-let-libcore
Browse files Browse the repository at this point in the history
  • Loading branch information
gaiety-deque committed May 17, 2024
2 parents f67ed3f + f584e8e commit 311a166
Show file tree
Hide file tree
Showing 33 changed files with 883 additions and 815 deletions.
181 changes: 0 additions & 181 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- run: npm run fmt
# Prevent the prettierignore change from being committed.
- run: git checkout .prettierignore
- uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # tag=v5
- uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # tag=v5
with:
commit_message: ':robot: Automated formatting fixes'
2 changes: 1 addition & 1 deletion build/cherry-pick.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ commitsToCherryPick.forEach(({ hash, type, scope, subject }) => {

try {
execSync(`git cherry-pick ${hash} -X theirs`);
} catch (e) {
} catch {
console.error(
chalk.red.bold('\nAborting cherry-pick and reseting to master')
);
Expand Down
2 changes: 1 addition & 1 deletion build/tasks/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function fileExists(v, o) {
var exists;
try {
exists = fs.existsSync(file);
} catch (e) {
} catch {
return false;
}
return exists;
Expand Down
Loading

0 comments on commit 311a166

Please sign in to comment.