@bigbinary/neeto-commons-frontend 4.13.32 → 4.13.33
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/configs/eslint/index.mjs +26 -0
- package/package.json +1 -1
package/configs/eslint/index.mjs
CHANGED
|
@@ -31,6 +31,32 @@ const compat = new FlatCompat({ baseDirectory: __dirname });
|
|
|
31
31
|
* unless you're sure of it.
|
|
32
32
|
*/
|
|
33
33
|
export default defineConfig([
|
|
34
|
+
{
|
|
35
|
+
ignores: [
|
|
36
|
+
"**/public/**",
|
|
37
|
+
"**/coverage/**",
|
|
38
|
+
"**/db/**",
|
|
39
|
+
"**/docs/**",
|
|
40
|
+
"**/log/**",
|
|
41
|
+
"**/.semaphore/**",
|
|
42
|
+
"**/test/**",
|
|
43
|
+
"**/tmp/**",
|
|
44
|
+
"**/.vscode/**",
|
|
45
|
+
"**/babel.config.js",
|
|
46
|
+
"**/esbuild.config.js",
|
|
47
|
+
"**/vite.config.js",
|
|
48
|
+
"**/app/javascript/packs/**",
|
|
49
|
+
"**/rollup.config.js",
|
|
50
|
+
"**/tailwind.config.js",
|
|
51
|
+
"**/.prettierrc.js",
|
|
52
|
+
"!.scripts/**",
|
|
53
|
+
"**/node_modules/**",
|
|
54
|
+
"**/eslint.config.js",
|
|
55
|
+
"**/package.json",
|
|
56
|
+
"**/jsconfig.json",
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
|
|
34
60
|
js.configs.recommended,
|
|
35
61
|
security.configs.recommended,
|
|
36
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.33",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|