Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor TS-486 #4054

Merged
merged 44 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8c55bbb
refactor
codacy-vrhpires Jul 21, 2023
27f47e5
refactor env in estlintrc
codacy-vrhpires Jul 21, 2023
1c391ae
refactor packages
codacy-vrhpires Jul 24, 2023
b4ae631
fix running tests
codacy-vrhpires Jul 24, 2023
46e50ce
fix multiple tests
codacy-vrhpires Jul 26, 2023
3a9c2cd
add: missing plugins rules and descriptions
codacy-vrhpires Jul 26, 2023
2ff24f5
fix: multiple-tests
codacy-vrhpires Jul 27, 2023
d5e7592
fix: multiple-tests
codacy-vrhpires Jul 28, 2023
e2114bd
fix: segmentation-fault
codacy-vrhpires Jul 28, 2023
66d1071
fix: multiple-tests
codacy-vrhpires Jul 28, 2023
4875082
fix: segfault
codacy-vrhpires Jul 28, 2023
a098355
fix: segfault
codacy-vrhpires Jul 31, 2023
dbc281a
fix: segfault
codacy-vrhpires Jul 31, 2023
6e79d5b
refactor; bump packages;
codacy-vrhpires Aug 1, 2023
84c8b6f
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
b58a93f
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
f26af6f
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
b399f45
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
9b24e93
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
2b8052f
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
9441ffe
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
b0cb578
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
8f0d153
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
fc57223
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
5b3c856
refactor; fix: multiple-tests;
codacy-vrhpires Aug 4, 2023
d6e1e3c
refactor;
codacy-vrhpires Aug 5, 2023
36d067c
refactor; bump packages;
codacy-vrhpires Aug 6, 2023
af91e0e
refactor;
codacy-vrhpires Aug 7, 2023
da8c22c
refactor;
codacy-vrhpires Aug 7, 2023
4727e38
refactor;
codacy-vrhpires Aug 7, 2023
6b97d75
refactor - remove canonical rules because they break linting;
codacy-vrhpires Aug 7, 2023
827765d
refactor; bump packages;
codacy-vrhpires Aug 7, 2023
3a26a4c
refactor; bump packages; generate docs;
codacy-vrhpires Aug 16, 2023
8d27ec2
refactor; bump packages; generate docs;
codacy-vrhpires Aug 21, 2023
0c7c50f
multiple-tests: fix;
codacy-vrhpires Aug 21, 2023
fef68a4
multiple-tests: fix;
codacy-vrhpires Aug 21, 2023
0e86199
reorganize code
codacy-vrhpires Aug 21, 2023
ea9ba6f
reorganize code
codacy-vrhpires Aug 21, 2023
3fb884d
changed let to const where possible
codacy-vrhpires Aug 21, 2023
ba704f0
changed chunk function to do it by total size of files
codacy-vrhpires Aug 22, 2023
f702c87
bump packages; add react related packages; generate docs and review s…
codacy-vrhpires Aug 25, 2023
c660f19
fixed missing package and related test
codacy-vrhpires Aug 25, 2023
003ad95
fix test config
codacy-vrhpires Aug 25, 2023
4b27477
changes according to review
codacy-vrhpires Aug 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ module.exports = {
ecmaFeatures: {
jsx: true
},
sourceType: "module",
project: "./tsconfig.json",
projects: ["./tsconfig.json"],
project: "/tsconfig.json",
projects: ["/tsconfig.json"],

},
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ RUN npm install --legacy-peer-deps --omit=dev &&\

WORKDIR /src

CMD ["node", "--max-semi-space-size=64", "--max-old-space-size=2304", "--v8-pool-size=0", "--use-largepages=silent", "/dist/src/index.js"]
CMD ["node", "--max-semi-space-size=64", "--max-old-space-size=2560", "--v8-pool-size=0", "--use-largepages=silent", "/dist/src/index.js"]
99 changes: 99 additions & 0 deletions docs/description/@angular-eslint_no-output-rename.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

99 changes: 99 additions & 0 deletions docs/description/@angular-eslint_no-outputs-metadata-property.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading