-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* plugin migration to build system * tweak * tweak * fix linter * fix linter * fix linter * fix eslint reports * FE: fixed checking for special characters in the name --------- Co-authored-by: Serhii Filonenko <[email protected]>
- Loading branch information
1 parent
ef076f8
commit 4c15e85
Showing
257 changed files
with
101,336 additions
and
124,397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.idea | ||
.vscode | ||
node_modules | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.{json,js,ts}] | ||
indent_size = 4 | ||
|
||
[.{eslintrc, prettierrc, .releaserc}] | ||
indent_size = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{sql,cql,hql,file,txt}] | ||
insert_final_newline = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.git | ||
.vscode | ||
.idea | ||
node_modules | ||
reverse_engineering/node_modules | ||
reverse_engineering/parser | ||
forward_engineering/node_modules | ||
forward_engineering/sampleGeneration/sampleGenerationTypes.d.ts | ||
build | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"extends": ["prettier"], | ||
"env": { | ||
"node": true, | ||
"es2022": true | ||
}, | ||
"plugins": ["import", "unused-imports", "@typescript-eslint"], | ||
"rules": { | ||
"no-cond-assign": "error", | ||
"no-const-assign": "error", | ||
"no-dupe-args": "error", | ||
"no-dupe-keys": "error", | ||
"no-duplicate-case": "error", | ||
"no-unreachable": "error", | ||
"eqeqeq": "error", | ||
"no-var": "error", | ||
"no-undef": "error", | ||
"no-bitwise": "warn", | ||
"import/no-unresolved": [ | ||
"error" | ||
], | ||
"import/named": "error", | ||
"import/default": "error", | ||
"import/no-self-import": "error", | ||
"no-unused-vars": "off", | ||
"unused-imports/no-unused-imports": "error", | ||
"unused-imports/no-unused-vars": [ | ||
"off", | ||
{ | ||
"vars": "all", | ||
"varsIgnorePattern": "^(React$|__)", | ||
"argsIgnorePattern": ".*" | ||
} | ||
], | ||
"no-debugger": "error" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts"], | ||
"extends": ["plugin:@typescript-eslint/recommended"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
} | ||
} | ||
], | ||
"settings": { | ||
"import/resolver": { | ||
"node": { | ||
"extensions": [".js", ".ts", ".cjs", ".mjs"] | ||
} | ||
} | ||
}, | ||
"root": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
.vscode | ||
.antlr | ||
.idea | ||
node_modules | ||
.DS_Store | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
save-exact=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.git | ||
.vscode | ||
.idea | ||
release | ||
node_modules | ||
package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"printWidth": 120, | ||
"tabWidth": 4, | ||
"useTabs": true, | ||
"semi": true, | ||
"singleQuote": true, | ||
"quoteProps": "preserve", | ||
"trailingComma": "all", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "avoid" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const path = require('path'); | ||
|
||
const DEFAULT_RELEASE_FOLDER_PATH = path.resolve(__dirname, 'release'); | ||
|
||
const EXCLUDED_EXTENSIONS = ['.js', '.g4', '.interp', '.tokens']; | ||
const EXCLUDED_FILES = [ | ||
'.github', | ||
'.DS_Store', | ||
'.editorconfig', | ||
'.eslintignore', | ||
'.eslintrc', | ||
'.git', | ||
'.gitignore', | ||
'.vscode', | ||
'.idea', | ||
'.prettierignore', | ||
'.prettierrc', | ||
'.dockerignore', | ||
'build', | ||
'release', | ||
'node_modules', | ||
'package-lock.json', | ||
]; | ||
|
||
module.exports = { | ||
DEFAULT_RELEASE_FOLDER_PATH, | ||
EXCLUDED_EXTENSIONS, | ||
EXCLUDED_FILES, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"bool": "{0/1}", | ||
"bytes": "{BYTES}", | ||
"null": "{null}" | ||
} | ||
} |
Oops, something went wrong.