Skip to content

Commit

Permalink
merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
LeandroTreu committed Apr 24, 2024
2 parents d35ad78 + 8d5efa9 commit 0aaa125
Show file tree
Hide file tree
Showing 69 changed files with 3,782 additions and 3,112 deletions.
76 changes: 73 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,79 @@ module.exports = {
],
"@typescript-eslint/no-unsafe-declaration-merging": "warn",
"@typescript-eslint/no-var-requires": "warn",
"semi": "error",
"array-bracket-newline": ["warn", {
"multiline": true
}],
"array-bracket-spacing": ["warn", "never"],
"array-element-newline": ["warn", "consistent"],
"arrow-spacing": "warn",
"block-spacing": ["warn", "always"],
"brace-style": ["warn", "1tbs"],
//"camelcase": ["warn"],
"comma-spacing": "warn",
"comma-dangle": ["warn", {
"functions": "never",
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline"
}],
"constructor-super": "warn",
"curly": ["warn", "multi-or-nest", "consistent"],
"eol-last": "warn",
"eqeqeq": "warn",
"func-call-spacing": ["warn", "never"],
"function-paren-newline": ["warn", "consistent"],
"implicit-arrow-linebreak": ["warn", "beside"],
"indent": ["warn", 4, {
"SwitchCase": 1
}],
"lines-between-class-members": "off",
"max-len": ["warn", {
"code": 80,
"ignoreComments": false,
"ignoreTrailingComments": false,
"ignoreUrls": true,
"ignoreStrings": false,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}],
"no-case-declarations": "off",
"no-empty": "off",
"no-fallthrough": "off",
"no-throw-literal": "warn",
"no-trailing-spaces": "warn",
"no-undef": "off",
"no-unused-vars": "off",
"no-useless-escape": "off",
"no-multiple-empty-lines": "warn",
"no-nested-ternary": "warn",
"no-var": "warn",
"no-whitespace-before-property": "warn",
"new-parens": ["warn", "always"],
"nonblock-statement-body-position": ["warn", "below"],
"object-curly-newline": ["warn", {
"consistent": true
}],
"object-curly-spacing": ["warn", "always"],
"object-property-newline": ["warn", {
"allowMultiplePropertiesPerLine": true,
}],
"operator-linebreak": ["warn", "after"],
"padded-blocks": ["warn", {
"blocks": "never",
"classes": "always",
"switches": "never"
}],
"prefer-arrow-callback": "error",
"no-empty": "off",
}
"quotes": ["warn", "single"],
"semi": "error",
"space-before-blocks": ["warn", "always"],
"space-before-function-paren": ["warn", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"space-in-parens": ["warn", "never"],
},
};
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [18.4]
node-version: [18.12]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [18.4]
node-version: [18.12]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
strategy:
matrix:
node-version: [18.4]
node-version: [18.12]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [18.4]
node-version: [18.12]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2019-2022, Scalable Parallel Computing Lab, ETH Zurich, and all contributors listed in AUTHORS
Copyright (c) 2019-2024, Scalable Parallel Computing Lab, ETH Zurich, and all contributors listed in AUTHORS
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion embed.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- Copyright 2019-2022 ETH Zurich and the DaCe authors. All rights reserved. -->
<!-- Copyright 2019-2024 ETH Zurich and the DaCe authors. All rights reserved. -->

<!DOCTYPE html>
<html lang="en" class="sdfv">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- Copyright 2019-2022 ETH Zurich and the DaCe authors. All rights reserved. -->
<!-- Copyright 2019-2024 ETH Zurich and the DaCe authors. All rights reserved. -->

<!DOCTYPE html>
<html lang="en" class="sdfv">
Expand Down
Loading

0 comments on commit 0aaa125

Please sign in to comment.