Skip to content

Commit

Permalink
Merge pull request #1 from Torgen/master
Browse files Browse the repository at this point in the history
Merge from upstream
  • Loading branch information
byronigoe authored Jul 20, 2023
2 parents eca912c + 3672275 commit 5c8196d
Show file tree
Hide file tree
Showing 473 changed files with 45,105 additions and 27,047 deletions.
72 changes: 72 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
#############################
#############################
## JavaScript Linter rules ##
#############################
#############################

############
# Env Vars #
############
env:
browser: true
es6: true
jest: true

###############
# Global Vars #
###############
globals:
Atomics: readonly
SharedArrayBuffer: readonly

###############
# Parser vars #
###############
parserOptions:
ecmaVersion: latest
sourceType: module

###########
# Plugins #
###########
plugins:
- 'prettier'

#########
# Rules #
#########
rules:
prettier/prettier: error

##############################
# Overrides for JSON parsing #
##############################
overrides:

# JSON files
- files:
- "*.json"
extends:
- plugin:jsonc/recommended-with-json
parser: jsonc-eslint-parser
parserOptions:
jsonSyntax: JSON

# JSONC files
- files:
- "*.jsonc"
extends:
- plugin:jsonc/recommended-with-jsonc
parser: jsonc-eslint-parser
parserOptions:
jsonSyntax: JSONC

# JSON5 files
- files:
- "*.json5"
extends:
- plugin:jsonc/recommended-with-json5
parser: jsonc-eslint-parser
parserOptions:
jsonSyntax: JSON5
11 changes: 11 additions & 0 deletions .github/actions/diff-bundle-stats/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "Diff Bundle Stats"
author: Dan Rosart
description: >
Read the stats.json files from base and head and reply to the PR with size
diffs.
runs:
using: 'node16'
main: dist/index.js
outputs:
diff:
description: A markdown description of the diff.
1 change: 1 addition & 0 deletions .github/actions/diff-bundle-stats/dist/index.js

Large diffs are not rendered by default.

153 changes: 153 additions & 0 deletions .github/actions/diff-bundle-stats/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .github/actions/diff-bundle-stats/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "diff-bundle-stats",
"version": "1.0.0",
"private": true,
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/glob": "^0.2.0"
}
}
Loading

0 comments on commit 5c8196d

Please sign in to comment.