@speechanddebate/eslint-config-nsda 2.0.4 → 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 +25 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -82,6 +82,30 @@ const react = [
|
|
|
82
82
|
|
|
83
83
|
const typeChecked = tseslint.config(
|
|
84
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(
|
|
107
|
+
...base,
|
|
108
|
+
...airbnbWithReact,
|
|
85
109
|
|
|
86
110
|
...tseslint.configs.strictTypeChecked,
|
|
87
111
|
...tseslint.configs.stylisticTypeChecked,
|
|
@@ -115,6 +139,7 @@ export const configs = {
|
|
|
115
139
|
recommended,
|
|
116
140
|
react,
|
|
117
141
|
typeChecked,
|
|
142
|
+
typeCheckedWithReact,
|
|
118
143
|
tabroom,
|
|
119
144
|
};
|
|
120
145
|
|