Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .eslintrc.js

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
runs-on: ubuntu-latest

name: Build and deploy
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

steps:
- name: Check actor permission level
# Only allow admin to deploy on release
Expand Down
8 changes: 7 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ module.exports = [
// Build output
'dist/*',
'node_modules/*',
// Polyfills
'src/polyfills/*',
],
},
{
Expand All @@ -27,6 +29,10 @@ module.exports = [
ecmaVersion: 2022,
sourceType: 'module',
parser: vueParser,
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
},
globals: {
document: 'readonly',
window: 'readonly',
Expand All @@ -49,7 +55,7 @@ module.exports = [
},
{
name: 'cad-viewer/javascript',
files: ['**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx'],
files: ['**/*.js', '**/*.jsx'],
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
Expand Down
1 change: 0 additions & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
findUnusedCode="false"
findUnusedIssueHandlerSuppression="false"
phpVersion="8.2"
>
<plugins>
</plugins>
<projectFiles>
Expand Down
Loading