Spaces:
Sleeping
Sleeping
| import tseslintPlugin from '@typescript-eslint/eslint-plugin'; | |
| import { defineConfig } from 'eslint/config'; | |
| import globals from 'globals'; | |
| const backendLanguageOptions = { | |
| globals: { | |
| // Current, intentionally supported globals | |
| extension: 'readonly', | |
| config: 'readonly', | |
| global_config: 'readonly', | |
| // Older not entirely ideal globals | |
| use: 'readonly', // <-- older import mechanism | |
| def: 'readonly', // <-- older import mechanism | |
| kv: 'readonly', // <-- should be passed/imported | |
| ll: 'readonly', // <-- questionable | |
| // Language/environment globals | |
| ...globals.node, | |
| }, | |
| }; | |
| const mandatoryRules = { | |
| 'no-undef': 'error', | |
| 'no-use-before-define': ['error', { | |
| 'functions': false, | |
| }], | |
| 'no-invalid-this': 'error', | |
| }; | |
| export default defineConfig([ | |
| { | |
| ignores: [ | |
| 'src/backend/src/modules/apps/AppInformationService.js', // TEMPORARY - SHOULD BE FIXED! | |
| 'src/backend/src/services/worker/WorkerService.js', // TEMPORARY - SHOULD BE FIXED! | |
| 'src/backend/src/public/**/*', // We may be able to delete this! I don't think it's used | |
| // These files run in the worker environment, so these rules don't apply | |
| 'src/backend/src/services/worker/dist/**/*.{js,cjs,mjs}', | |
| 'src/backend/src/services/worker/src/**/*.{js,cjs,mjs}', | |
| 'src/backend/src/services/worker/template/puter-portable.js', | |
| ], | |
| }, | |
| { | |
| plugins: { | |
| '@typescript-eslint': tseslintPlugin, | |
| }, | |
| }, | |
| { | |
| files: [ | |
| 'src/backend/**/*.{js,mjc,cjs}', | |
| 'extensions/**/*.{js,mjc,cjs}', | |
| ], | |
| ignores: [ | |
| 'src/backend/src/services/database/sqlite_setup/**/*.js', | |
| ], | |
| rules: mandatoryRules, | |
| languageOptions: { | |
| ...backendLanguageOptions, | |
| }, | |
| }, | |
| { | |
| files: [ | |
| 'src/backend/src/services/database/sqlite_setup/**/*.js', | |
| ], | |
| rules: mandatoryRules, | |
| languageOptions: { | |
| globals: { | |
| read: 'readonly', | |
| write: 'readonly', | |
| log: 'readonly', | |
| ...globals.node, | |
| }, | |
| }, | |
| }, | |
| { | |
| files: [ | |
| 'src/backend/**/*.{ts}', | |
| 'extensions/**/*.{ts}', | |
| ], | |
| rules: mandatoryRules, | |
| languageOptions: { | |
| ...backendLanguageOptions, | |
| }, | |
| }, | |
| ]); | |