We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1637938 commit f63a1f8Copy full SHA for f63a1f8
1 file changed
microservices/skill-assessment-service/eslint.config.mjs
@@ -0,0 +1,27 @@
1
+import js from '@eslint/js';
2
+import tseslint from '@typescript-eslint/eslint-plugin';
3
+import tsparser from '@typescript-eslint/parser';
4
+import prettier from 'eslint-plugin-prettier';
5
+
6
+export default [
7
+ js.configs.recommended,
8
+ {
9
+ files: ['**/*.ts'],
10
+ languageOptions: {
11
+ parser: tsparser,
12
+ parserOptions: {
13
+ project: './tsconfig.json',
14
+ tsconfigRootDir: import.meta.dirname,
15
+ },
16
17
+ plugins: {
18
+ '@typescript-eslint': tseslint,
19
+ prettier,
20
21
+ rules: {
22
+ ...prettier.configs.recommended.rules,
23
+ '@typescript-eslint/no-unused-vars': 'warn',
24
+ '@typescript-eslint/explicit-function-return-type': 'off',
25
26
27
+];
0 commit comments