Skip to content

Commit 237381e

Browse files
Develop (#35)
* fix project creation * update dependencies * accept greater version number * add ask input password for linux * update dependency * add test script * update dependencies * remove logs * 4qs compatible * fix eslint * ignore lock in extension * add syntaxes 4qs in vscodeignore * Use commonjs for the extension * Remove old workspace collection (#33) * Remove old workspace collection * fix unused import * Fix download tool4d * rework UT tooldownload
1 parent 8b1b8b1 commit 237381e

File tree

15 files changed

+1128
-1182
lines changed

15 files changed

+1128
-1182
lines changed

editor/.eslintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

editor/.eslintrc.js

Lines changed: 0 additions & 20 deletions
This file was deleted.

editor/.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
!language-configuration.json
44
!LICENSE.md
55
!out/extension.js
6-
!package-lock.json
76
!package.json
87
!syntaxes/language-4d/syntaxes/4d.tmLanguage.json
8+
!syntaxes/language-4qs/syntaxes/4qs.tmLanguage.json
99
!README.md

editor/eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
import ts from '@typescript-eslint/eslint-plugin';
3+
import tsParser from '@typescript-eslint/parser';
4+
5+
6+
export default [
7+
{
8+
files: ['src/**/*.ts', 'src/**/*.tsx'],
9+
languageOptions: {
10+
parser: tsParser,
11+
parserOptions: {
12+
ecmaVersion: 'latest',
13+
sourceType: 'module',
14+
},
15+
},
16+
plugins: {
17+
'@typescript-eslint': ts,
18+
},
19+
ignores: ["node_modules/**", "out/**"],
20+
rules: {
21+
...ts.configs.recommended.rules,
22+
semi: ['error', 'always'],
23+
'@typescript-eslint/no-unused-vars': 'off',
24+
'@typescript-eslint/no-explicit-any': 'off',
25+
'@typescript-eslint/explicit-module-boundary-types': 'off',
26+
'@typescript-eslint/no-non-null-assertion': 'off',
27+
},
28+
},
29+
];

0 commit comments

Comments
 (0)