Skip to content

Commit

Permalink
fix(web-2516): add support reserved in enum (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
kot9ta committed Mar 4, 2024
1 parent aec65b5 commit 65b0b96
Show file tree
Hide file tree
Showing 44 changed files with 7,259 additions and 4,451 deletions.
7 changes: 1 addition & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,18 +181,13 @@ module.exports = {
'import/order': [
'error',
{
groups: [
['builtin', 'external'],
['internal', 'unknown', 'object'],
['parent', 'sibling', 'index'],
],
groups: [['builtin', 'external'], ['internal', 'unknown', 'object'], ['parent'], ['sibling', 'index']],
'newlines-between': 'always',
alphabetize: { order: 'asc', caseInsensitive: true },
},
],
'jsdoc/check-alignment': 'error',
'jsdoc/check-indentation': 'error',
'jsdoc/newline-after-description': 'error',
'linebreak-style': ['error', 'unix'],
'max-classes-per-file': ['error', 1],
'max-len': [
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 12
node-version: 20
- name: Set Branch
id: branch
run: |
Expand Down

0 comments on commit 65b0b96

Please sign in to comment.