Skip to content

Commit ffb9b63

Browse files
author
Nikos Vasileiou
committed
Update eslint for major bump releases
1 parent 4293dcb commit ffb9b63

File tree

9 files changed

+13
-2
lines changed

9 files changed

+13
-2
lines changed

packages/angular/.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"tsdoc/syntax": "warn",
5555
"unicorn/filename-case": "off", // We are naming files with capitals
5656
// 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.
57-
"unicorn/prevent-abbreviations": "off"
57+
"unicorn/prevent-abbreviations": "off",
58+
"import/no-unresolved": "off"
5859
},
5960
"settings": {
6061
"import/resolver": {

packages/api/.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": ["airbnb-base"],
33
"rules": {
4+
"import/no-unresolved": "off",
45
"import/no-extraneous-dependencies": "off",
56
"no-plusplus": "off",
67
"no-underscore-dangle": "off"

packages/cli/.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"ignorePatterns": ["**/fixtures/*"],
3-
"extends": ["airbnb-base"]
3+
"extends": ["airbnb-base"],
4+
"rules": {
5+
"import/no-unresolved": "off"
6+
}
47
}

packages/dom/.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": ["airbnb-base"],
33
"rules": {
44
"import/no-extraneous-dependencies": "off",
5+
"import/no-unresolved": "off",
56
"no-plusplus": "off",
67
"no-underscore-dangle": "off"
78
}

packages/express/.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": ["airbnb-base"],
33
"rules": {
44
"import/no-extraneous-dependencies": "off",
5+
"import/no-unresolved": "off",
56
"no-plusplus": "off",
67
"no-underscore-dangle": "off"
78
}

packages/i18next/.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": ["airbnb-base"],
33
"rules": {
44
"import/no-extraneous-dependencies": "off",
5+
"import/no-unresolved": "off",
56
"no-plusplus": "off",
67
"no-underscore-dangle": "off"
78
},

packages/react/.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": ["airbnb"],
33
"rules": {
4+
"import/no-unresolved": "off",
45
"react/jsx-fragments": "off",
56
"react/jsx-filename-extension": "off",
67
"react/jsx-one-expression-per-line": "off"

packages/vue2/.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": ["airbnb-base"],
33
"rules": {
4+
"import/no-unresolved": "off",
45
"no-underscore-dangle": "off"
56
},
67
"ignorePatterns": ["dist/"]

packages/vue3/.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": ["airbnb-base"],
33
"rules": {
4+
"import/no-unresolved": "off",
45
"no-underscore-dangle": "off"
56
},
67
"ignorePatterns": ["dist/"]

0 commit comments

Comments
 (0)