9.0.11 • Published 1 year ago

vue-eslint-standard v9.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

⚡vue-eslint-standard

quickly start eslint in vue.

npm version Alt Vite Version Alt

install

npm i vue-eslint-standard -D

eslint.config.js

import { defineConfig } from 'vue-eslint-standard';

export default defineConfig();

.prettierrc.js

/**
 * @type {import("prettier").Config}
 */
export default {
  singleQuote: true,
  trailingComma: 'all',
  bracketSameLine: true,
  endOfLine: 'auto',
};

custom configuration

import { defineConfig } from 'vue-eslint-standard';
import tseslint from 'typescript-eslint';

export default defineConfig({
  extends: [...tseslint.configs.recommended, ...tseslint.configs.strict],
  rules: {
    '@typescript-eslint/no-empty-function': 'off',
    '@typescript-eslint/no-empty-object-type': 'off',
  },
});
9.3.0

11 months ago

9.2.0

11 months ago

9.1.0

12 months ago

9.0.13

12 months ago

9.0.12

1 year ago

9.0.11

1 year ago

9.0.10

1 year ago

9.0.9

1 year ago

9.0.8

1 year ago

9.0.7

1 year ago

9.0.6

1 year ago

9.0.5

1 year ago

9.0.4

1 year ago

9.0.3

1 year ago

9.0.2

1 year ago

9.0.1

1 year ago

9.0.0

1 year ago