@unix/eslint 0.1.0 → 0.1.1

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/configs/js.js +3 -2
  2. package/package.json +1 -1
package/configs/js.js CHANGED
@@ -16,6 +16,7 @@ const ignores = [
16
16
  '**/.eslintcache',
17
17
  '**/.next/**',
18
18
  '**/.nuxt/**',
19
+ '**/.astro/**',
19
20
  '**/.output/**',
20
21
  '**/.svelte-kit/**',
21
22
  '**/.turbo/**',
@@ -124,8 +125,8 @@ export default [
124
125
  'prefer-rest-params': 'error',
125
126
  'no-else-return': ['error', { allowElseIf: false }],
126
127
  curly: ['error', 'multi'],
127
- '@stylistic/array-bracket-newline': ['error', { multiline: true }],
128
- '@stylistic/array-element-newline': ['error', { multiline: true }],
128
+ '@stylistic/array-bracket-newline': ['error', 'consistent'],
129
+ '@stylistic/array-element-newline': ['error', 'consistent'],
129
130
  '@stylistic/arrow-parens': ['error', 'as-needed'],
130
131
  '@stylistic/implicit-arrow-linebreak': ['error', 'beside'],
131
132
  '@stylistic/linebreak-style': ['error', 'unix'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unix/eslint",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "ESLint config for all @unix projects.",
5
5
  "type": "module",
6
6
  "main": "index.js",