79221071

Date: 2024-11-24 20:59:27
Score: 0.5
Natty:
Report link

Using ESLint 9 and its flat configuration, env is no more valid. You have to add ...globals.jasmine in the globals object of the language options (in your eslint.config.mjs configuration file).

languageOptions: {
//...
  globals: {
  //...
  ...globals.jasmine
  }
},
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ARno