eslint-config-azuriru 3.3.3 → 3.3.4

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 (3) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
  3. package/svelte.js +2 -3
package/index.js CHANGED
@@ -10,7 +10,7 @@ export { default as svelte } from './svelte.js';
10
10
  export default defineConfig(
11
11
  // Shared JS/TS config
12
12
  {
13
- files: ['**/*.ts', '**/*.js', '**/*.cjs'],
13
+ // files: ['**/*.ts', '**/*.js', '**/*.cjs'],
14
14
  ignores: [],
15
15
  languageOptions: {
16
16
  parser,
@@ -20,7 +20,7 @@ export default defineConfig(
20
20
  }
21
21
  },
22
22
  plugins: {
23
- 'antfu': antfu,
23
+ antfu: antfu,
24
24
  'import': imports,
25
25
  '@stylistic': stylistic,
26
26
  '@typescript-eslint': tslint
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-config-azuriru",
3
3
  "description": "My personal INCREDIBLY OPINIONATED configs for anything ESlint.",
4
- "version": "3.3.3",
4
+ "version": "3.3.4",
5
5
  "main": "index.js",
6
6
  "eslintConfig": {
7
7
  "env": {
package/svelte.js CHANGED
@@ -9,14 +9,13 @@ export default (svelteConfig) => {
9
9
  plugins: {
10
10
  svelte
11
11
  },
12
- files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'],
12
+ // files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'],
13
13
  ignores: [], // ['svelte.config.js'],
14
14
  languageOptions: {
15
- parser,
16
15
  parserOptions: {
17
16
  projectService: true,
18
17
  extraFileExtensions: ['.svelte'],
19
- parser: tslint.parser,
18
+ parser: ts.parser,
20
19
  svelteConfig
21
20
  }
22
21
  },