Skip to content

Commit aa78049

Browse files
authored
Merge pull request #33 from willwade/feature/smart-grammar-morphology
Add smart grammar morphology engine with multi-platform word forms su…
2 parents 7913cff + 6f327b8 commit aa78049

35 files changed

Lines changed: 4929 additions & 1542 deletions

.eslintrc.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"error",
2626
{
2727
"argsIgnorePattern": "^_",
28-
"varsIgnorePattern": "^_"
28+
"varsIgnorePattern": "^_",
29+
"caughtErrorsIgnorePattern": "^_"
2930
}
3031
],
3132
"@typescript-eslint/no-non-null-assertion": "warn",
@@ -64,13 +65,15 @@
6465
"error",
6566
{
6667
"argsIgnorePattern": "^_",
67-
"varsIgnorePattern": "^_"
68+
"varsIgnorePattern": "^_",
69+
"caughtErrorsIgnorePattern": "^_"
6870
}
6971
],
7072
"@typescript-eslint/no-unsafe-assignment": "off",
7173
"@typescript-eslint/no-unsafe-call": "off",
7274
"@typescript-eslint/no-unsafe-member-access": "off",
73-
"@typescript-eslint/no-redundant-type-constituents": "off"
75+
"@typescript-eslint/no-redundant-type-constituents": "off",
76+
"@typescript-eslint/no-require-imports": "off"
7477
}
7578
},
7679
{
@@ -90,14 +93,16 @@
9093
"error",
9194
{
9295
"argsIgnorePattern": "^_",
93-
"varsIgnorePattern": "^_"
96+
"varsIgnorePattern": "^_",
97+
"caughtErrorsIgnorePattern": "^_"
9498
}
9599
],
96100
"@typescript-eslint/no-unsafe-assignment": "off",
97101
"@typescript-eslint/no-unsafe-call": "off",
98102
"@typescript-eslint/no-unsafe-member-access": "off",
99103
"@typescript-eslint/no-unsafe-return": "off",
100-
"@typescript-eslint/no-unsafe-argument": "off"
104+
"@typescript-eslint/no-unsafe-argument": "off",
105+
"@typescript-eslint/no-require-imports": "off"
101106
}
102107
},
103108
{

0 commit comments

Comments
 (0)