Skip to content

Commit

Permalink
Refactor TS-486 (#4054)
Browse files Browse the repository at this point in the history
Refactor Engine and Options creation:
- lint in chunks split by size of files
- split functions for single responsibility
- improved logging verbosity
- generate default options if user doesn't have a config file in root (but should)
- fixed minor inconsistencies in multiple-tests

Added plugins:
- react (and related plugins)
- shakapacker
- @mui/material

Added missing plugins rules descriptions
Bump packages
  • Loading branch information
codacy-vrhpires committed Aug 25, 2023
1 parent ba6378f commit 56e83bd
Show file tree
Hide file tree
Showing 288 changed files with 38,078 additions and 27,324 deletions.
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"]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Codacy ESLint

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/88324e5ee7464c62abe07115b884c6a9)](https://app.codacy.com/gh/codacy/codacy-eslint/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![CircleCI](https://circleci.com/gh/codacy/codacy-eslint.svg?style=svg)](https://circleci.com/gh/codacy/codacy-eslint)

## Adding new plugins / configs

1. Install the package using npm:
Expand Down
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

0 comments on commit 56e83bd

Please sign in to comment.