Skip to content

Commit

Permalink
Update eslint files
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikos Vasileiou committed Jan 26, 2024
1 parent 4293dcb commit 5be914e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/angular/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
"tsdoc/syntax": "warn",
"unicorn/filename-case": "off", // We are naming files with capitals
// I think some of these are silly. `e` is bad, but `err` and `exc` are decent. `user of users` is confusing, `usr of users` is safer.
"unicorn/prevent-abbreviations": "off"
"unicorn/prevent-abbreviations": "off",
"import/no-unresolved": "off"
},
"settings": {
"import/resolver": {
Expand Down
5 changes: 4 additions & 1 deletion packages/cli/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"ignorePatterns": ["**/fixtures/*"],
"extends": ["airbnb-base"]
"extends": ["airbnb-base"],
"rules": {
"import/no-unresolved": "off"
}
}
1 change: 1 addition & 0 deletions packages/express/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": ["airbnb-base"],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off"
}
Expand Down
1 change: 1 addition & 0 deletions packages/i18next/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": ["airbnb-base"],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off"
},
Expand Down

0 comments on commit 5be914e

Please sign in to comment.