@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.
Files changed (2) hide show
  1. package/index.js +24 -0
  2. 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speechanddebate/eslint-config-nsda",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "NSDA ESLint config",
5
5
  "main": "index.js",
6
6
  "type": "module",