Skip to content

Commit

Permalink
fix: update cli and fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN committed Aug 30, 2024
1 parent b0f9543 commit 9fe8081
Show file tree
Hide file tree
Showing 24 changed files with 1,160 additions and 652 deletions.
40 changes: 0 additions & 40 deletions .eslintrc

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ node_modules
.sonarlint
.scannerwork
.nyc_output
coverage
/coverage
npm-debug.log
/dist
docs
.rete-cli
.sonar
17 changes: 17 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import tseslint from 'typescript-eslint';
import configs from 'rete-cli/configs/eslint.mjs';
import gloals from 'globals'

export default tseslint.config(
...configs,
{
languageOptions: {
globals: {
...gloals.browser
}
},
rules: {
'@typescript-eslint/unbound-method': 'off'
}
}
)
Loading

0 comments on commit 9fe8081

Please sign in to comment.