@orchestrator-ui/eslint-config-custom 0.0.3 → 0.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.
@@ -1,7 +1,9 @@
1
+ yarn run v1.22.21
1
2
  $ tsup index.js --format esm
2
3
  CLI Building entry: index.js
3
- CLI tsup v7.1.0
4
+ CLI tsup v7.2.0
4
5
  CLI Target: node16
5
6
  ESM Build start
6
- ESM dist\index.mjs 1.26 KB
7
- ESM ⚡️ Build success in 78ms
7
+ ESM dist/index.mjs 1.32 KB
8
+ ESM ⚡️ Build success in 24ms
9
+ Done in 0.32s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @orchestrator-ui/eslint-config-custom
2
2
 
3
+ ## 0.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - ce48846: Updates linting rules to ban all console statements except console.error()
8
+
9
+ ## 0.0.5
10
+
11
+ ### Patch Changes
12
+
13
+ - 6597ac1: Test release after adding absolute imports (issue 414)
14
+
15
+ ## 0.0.4
16
+
17
+ ### Patch Changes
18
+
19
+ - 6d680f6: Test release before adding absolute imports (issue 414)
20
+
3
21
  ## 0.0.3
4
22
 
5
23
  ### Patch Changes
package/dist/index.mjs CHANGED
@@ -25,6 +25,7 @@ var require_eslint_config_custom = __commonJS({
25
25
  "@next/next/no-html-link-for-pages": "off",
26
26
  "@typescript-eslint/ban-ts-comment": "warn",
27
27
  "@typescript-eslint/no-explicit-any": "error",
28
+ "no-console": ["error", { allow: ["error"] }],
28
29
  "react/react-in-jsx-scope": 2,
29
30
  "react/jsx-uses-react": 2
30
31
  },
package/index.js CHANGED
@@ -10,6 +10,7 @@ module.exports = {
10
10
  '@next/next/no-html-link-for-pages': 'off',
11
11
  '@typescript-eslint/ban-ts-comment': 'warn',
12
12
  '@typescript-eslint/no-explicit-any': 'error',
13
+ 'no-console': ['error', { allow: ['error'] }],
13
14
  'react/react-in-jsx-scope': 2,
14
15
  'react/jsx-uses-react': 2,
15
16
  },
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/eslint-config-custom",
3
- "version": "0.0.3",
4
- "main": "./dist/index.js",
3
+ "version": "0.0.6",
5
4
  "license": "MIT",
6
5
  "scripts": {
7
6
  "build": "tsup index.js --format esm",
8
- "dev": "yarn build -- --watch"
7
+ "dev": "yarn build -- --watch",
8
+ "reset": "rm -rf node_modules"
9
9
  },
10
10
  "devDependencies": {
11
- "@typescript-eslint/eslint-plugin": "5.61.0",
12
- "eslint": "^8.45.0",
11
+ "@typescript-eslint/eslint-plugin": "6.2.0",
12
+ "eslint": "^8.48.0",
13
13
  "eslint-config-next": "^13.4.1",
14
14
  "eslint-config-prettier": "^8.3.0",
15
- "eslint-plugin-react": "7.28.0",
16
- "eslint-config-turbo": "^1.9.3"
15
+ "eslint-config-turbo": "^1.10.13",
16
+ "eslint-plugin-react": "7.28.0"
17
17
  },
18
18
  "publishConfig": {
19
19
  "access": "public"