We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1fecc5 commit bf253e9Copy full SHA for bf253e9
.eslintrc.json
@@ -40,6 +40,7 @@
40
"@typescript-eslint/no-unsafe-return": "off",
41
"import/no-relative-parent-imports": "error",
42
"functional/prefer-readonly-type": "off",
43
+ "functional/prefer-readonly-type-declaration": "warn",
44
"node/no-unsupported-features/es-builtins": "off",
45
"node/no-unsupported-features/es-syntax": "off",
46
"promise/prefer-await-to-callbacks": "off",
@@ -90,6 +91,12 @@
90
91
"jsdoc/require-jsdoc": "off"
92
}
93
},
94
+ {
95
+ "files": ["**/*.md/**"],
96
+ "rules": {
97
+ "functional/prefer-readonly-type-declaration": "off"
98
+ }
99
+ },
100
// FIXME: This override is defined in the upsteam; it shouldn't need to be redefined here. Why?
101
{
102
"files": ["./**/*.md/**"],
0 commit comments