@speechanddebate/eslint-config-nsda 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +24 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -81,6 +81,29 @@ const react = [
|
|
|
81
81
|
];
|
|
82
82
|
|
|
83
83
|
const typeChecked = tseslint.config(
|
|
84
|
+
...base,
|
|
85
|
+
...airbnbBase,
|
|
86
|
+
|
|
87
|
+
...tseslint.configs.strictTypeChecked,
|
|
88
|
+
...tseslint.configs.stylisticTypeChecked,
|
|
89
|
+
typescript,
|
|
90
|
+
disableTypeChecked,
|
|
91
|
+
|
|
92
|
+
vitestPlugin,
|
|
93
|
+
...testingLibraryPlugin,
|
|
94
|
+
importPlugin,
|
|
95
|
+
...importTypescriptPlugin,
|
|
96
|
+
|
|
97
|
+
baseRules,
|
|
98
|
+
importRules,
|
|
99
|
+
jestRules,
|
|
100
|
+
vitestRules,
|
|
101
|
+
typescriptRules,
|
|
102
|
+
|
|
103
|
+
eslintConfigPrettier,
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
const typeCheckedWithReact = tseslint.config(
|
|
84
107
|
...base,
|
|
85
108
|
...airbnbWithReact,
|
|
86
109
|
|
|
@@ -116,6 +139,7 @@ export const configs = {
|
|
|
116
139
|
recommended,
|
|
117
140
|
react,
|
|
118
141
|
typeChecked,
|
|
142
|
+
typeCheckedWithReact,
|
|
119
143
|
tabroom,
|
|
120
144
|
};
|
|
121
145
|
|