@meistrari/mise-en-place 2.1.1 → 2.1.3

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/dist/eslint.mjs +9 -6
  2. package/package.json +1 -1
package/dist/eslint.mjs CHANGED
@@ -18,16 +18,19 @@ function getTsConfig() {
18
18
  const eslintConfig = antfu(
19
19
  {
20
20
  stylistic: {
21
- indent: 4
22
- // quotes: 'single',
23
- // semi: false,
21
+ indent: 4,
22
+ quotes: "single",
23
+ semi: false,
24
+ overrides: {
25
+ "style/quotes": ["error", "single", {
26
+ avoidEscape: true
27
+ }]
28
+ }
24
29
  },
25
30
  // Only lint changed lines when running in CI
26
31
  // This speeds up the linting process significantly and also allows us to
27
32
  // rollout new rules gradually.
28
- ...isCI ? {
29
- processor: eslintPluginDiff.processors.ci
30
- } : void 0,
33
+ ...isCI ? { processor: eslintPluginDiff.processors.ci } : void 0,
31
34
  typescript: getTsConfig(),
32
35
  ignores: [
33
36
  ".github",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/mise-en-place",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",