@ofk/eslint-config 0.0.14 → 0.0.15

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 ofk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # @ofk/eslint-config
2
2
 
3
- @ofk/eslint-config is an eslint config that enables more rules than recommended.
3
+ [![npm](https://img.shields.io/npm/v/@ofk/eslint-config)](https://npmjs.com/package/@ofk/eslint-config)
4
+ ![ci](https://github.com/ofk/eslint-config/actions/workflows/ci.yml/badge.svg)
5
+
6
+ @ofk/eslint-config is an eslint config that enables **more rules than recommended**.
7
+ This is the base for [@ofk/eslint-config-recommend](https://npmjs.com/package/@ofk/eslint-config-recommend).
4
8
 
5
9
  ## Install
6
10
 
package/dist/index.js CHANGED
@@ -477,11 +477,12 @@ var jsxA11yStrict = mergeRules(_eslintpluginjsxa11y2.default.flatConfigs.recomme
477
477
  var _eslintpluginperfectionist = require('eslint-plugin-perfectionist'); var _eslintpluginperfectionist2 = _interopRequireDefault(_eslintpluginperfectionist);
478
478
  var perfectionistRecommended = {
479
479
  ..._eslintpluginperfectionist2.default.configs["recommended-natural"],
480
- rules: Object.fromEntries(
481
- Object.entries(_nullishCoalesce(_eslintpluginperfectionist2.default.configs["recommended-natural"].rules, () => ( {}))).map(
482
- ([name, rule]) => [name, mergeRuleOptions(rule, { ignoreCase: false })]
483
- )
484
- )
480
+ rules: _nullishCoalesce(_eslintpluginperfectionist2.default.configs["recommended-natural"].rules, () => ( {})),
481
+ settings: {
482
+ perfectionist: {
483
+ ignoreCase: false
484
+ }
485
+ }
485
486
  };
486
487
  var perfectionistStrict = mergeRules(
487
488
  perfectionistRecommended,
package/dist/index.mjs CHANGED
@@ -477,11 +477,12 @@ var jsxA11yStrict = mergeRules(pluginJsxA11y.flatConfigs.recommended, {
477
477
  import pluginPerfectionist from "eslint-plugin-perfectionist";
478
478
  var perfectionistRecommended = {
479
479
  ...pluginPerfectionist.configs["recommended-natural"],
480
- rules: Object.fromEntries(
481
- Object.entries(pluginPerfectionist.configs["recommended-natural"].rules ?? {}).map(
482
- ([name, rule]) => [name, mergeRuleOptions(rule, { ignoreCase: false })]
483
- )
484
- )
480
+ rules: pluginPerfectionist.configs["recommended-natural"].rules ?? {},
481
+ settings: {
482
+ perfectionist: {
483
+ ignoreCase: false
484
+ }
485
+ }
485
486
  };
486
487
  var perfectionistStrict = mergeRules(
487
488
  perfectionistRecommended,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ofk/eslint-config",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "ofk (https://github.com/ofk/)",