@eslinted/defaults 3.2.0 → 3.3.0

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,7 @@
1
1
  export declare const settings: {
2
2
  readonly ecmaVersion: 2023;
3
3
  readonly sourceType: "module";
4
- readonly noInlineConfig: true;
4
+ readonly noInlineConfig: false;
5
5
  readonly reportUnusedDisableDirectives: "error";
6
6
  };
7
7
  //# sourceMappingURL=settings.d.ts.map
package/dist/settings.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export const settings = {
2
2
  ecmaVersion: 2023,
3
3
  sourceType: "module",
4
- noInlineConfig: true,
4
+ noInlineConfig: false,
5
5
  reportUnusedDisableDirectives: "error",
6
6
  };
7
7
  //# sourceMappingURL=settings.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"settings.js","sourceRoot":"","sources":["../src/settings.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,WAAW,EAAE,IAAI;IACjB,UAAU,EAAE,QAAQ;IACpB,cAAc,EAAE,IAAI;IACpB,6BAA6B,EAAE,OAAO;CAC9B,CAAC"}
1
+ {"version":3,"file":"settings.js","sourceRoot":"","sources":["../src/settings.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,WAAW,EAAE,IAAI;IACjB,UAAU,EAAE,QAAQ;IACpB,cAAc,EAAE,KAAK;IACrB,6BAA6B,EAAE,OAAO;CAC9B,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "22.11.0",
3
3
  "name": "@eslinted/defaults",
4
- "version": "3.2.0",
4
+ "version": "3.3.0",
5
5
  "description": "Default scopes for `linted`.",
6
6
  "keywords": [],
7
7
  "repository": "github:jimmy-zhening-luo/linted-defaults",
package/src/settings.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export const settings = {
2
2
  ecmaVersion: 2023,
3
3
  sourceType: "module",
4
- noInlineConfig: true,
4
+ noInlineConfig: false,
5
5
  reportUnusedDisableDirectives: "error",
6
6
  } as const;