0.6.4 • Published 2 days ago

@subframe7536/eslint-config v0.6.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 days ago

@subframe7536/eslint-config

self use eslint config, extends antfu's config

difference

  • add solid-js support
  • prefer curly
  • prefer global Buffer, process
  • ignores can start with ./
  • loose some rules

setup

in eslint.config.js

import { defineEslintConfig } from '@subframe7536/eslint-config'

export default defineEslintConfig({ solid: true })

types:

import type { OptionsConfig, TypedFlatConfigItem } from '@antfu/eslint-config'

type Options = Omit<OptionsConfig, 'overrides'> & {
  /**
   * Enable Solid-js rules
   */
  solid?: boolean
  /**
   * Ignore files
   */
  ignores?: string | string[]
  /**
   * Override all rules
   */
  overrideRules?: TypedFlatConfigItem['rules']
}

in .vscode/settings.json

{
  // Enable the ESlint flat config support
  "eslint.experimental.useFlatConfig": true,

  // Disable the default formatter, use eslint instead
  "prettier.enable": false,
  "editor.formatOnSave": false,

  // Auto fix
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": "explicit",
    "source.organizeImports": "never"
  },

  // Enable eslint for all supported languages
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact",
    "vue",
    "html",
    "markdown",
    "json",
    "jsonc",
    "yaml"
  ]
}
0.6.4

2 days ago

0.6.3

8 days ago

0.6.2

16 days ago

0.6.1

1 month ago

0.6.0

1 month ago

0.5.12

2 months ago

0.5.13

2 months ago

0.5.11

2 months ago

0.5.10

3 months ago

0.5.8

4 months ago

0.5.9

4 months ago

0.5.7

5 months ago

0.5.6

5 months ago

0.5.5

5 months ago

0.5.4

5 months ago

0.5.3

5 months ago

0.1.10

10 months ago

0.1.11

10 months ago

0.1.12

10 months ago

0.1.13

10 months ago

0.1.14

10 months ago

0.3.0

7 months ago

0.2.1

9 months ago

0.2.0

9 months ago

0.3.6

7 months ago

0.2.7

8 months ago

0.3.5

7 months ago

0.2.6

9 months ago

0.2.9

8 months ago

0.3.7

7 months ago

0.2.8

8 months ago

0.5.0

6 months ago

0.4.1

6 months ago

0.3.2

7 months ago

0.2.3

9 months ago

0.4.0

6 months ago

0.3.1

7 months ago

0.2.2

9 months ago

0.5.2

6 months ago

0.4.3

6 months ago

0.3.4

7 months ago

0.2.5

9 months ago

0.5.1

6 months ago

0.4.2

6 months ago

0.3.3

7 months ago

0.2.4

9 months ago

0.1.8

12 months ago

0.1.7

1 year ago

0.1.9

12 months ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago