Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaender committed Apr 22, 2024
1 parent ffd102f commit fab1748
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .eslintrc.js
Expand Up @@ -3,12 +3,12 @@ module.exports = {
env: {
node: true
},
extends: ['plugin:prettier/recommend'],
extends: ["plugin:prettier/recommend"],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
},
parserOptions: {
parser: 'babel-eslint'
parser: "babel-eslint"
}
}
};
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [ '16.x', '18.x', '20.x' ]
node-version: ["16.x", "18.x", "20.x"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -10,8 +10,8 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm run build-and-test
- run: npm publish
env:
Expand Down
6 changes: 3 additions & 3 deletions .mocharc.json
@@ -1,4 +1,4 @@
{
"$schema": "https://json.schemastore.org/mocharc.json",
"require": "tsx"
}
"$schema": "https://json.schemastore.org/mocharc.json",
"require": "tsx"
}

0 comments on commit fab1748

Please sign in to comment.