Skip to content

Commit

Permalink
Migrated GUI ti TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Jan 29, 2025
1 parent 75063b6 commit 26f0c35
Show file tree
Hide file tree
Showing 57 changed files with 7,545 additions and 2,586 deletions.
37 changes: 37 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import config from '@iobroker/eslint-config';

export default [
...config,
{
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ['*.mjs'],
},
tsconfigRootDir: import.meta.dirname,
project: './tsconfig.json',
},
},
},
{
ignores: [
'src-admin/**/*',
'admin/**/*',
'node_modules/**/*',
'test/**/*',
'build/**/*',
'tasks.js',
'tmp/**/*',
'.**/*',
],
},
{
// disable temporary the rule 'jsdoc/require-param' and enable 'jsdoc/require-jsdoc'
rules: {
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param': 'off',

'@typescript-eslint/no-require-imports': 'off',
},
},
];
182 changes: 0 additions & 182 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit 26f0c35

Please sign in to comment.