9.3.0 • Published 9 months ago
vue-eslint-standard v9.3.0
⚡vue-eslint-standard
quickly start eslint in vue.
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
9 months ago
9.2.0
10 months ago
9.1.0
10 months ago
9.0.13
11 months ago
9.0.12
11 months ago
9.0.11
11 months ago
9.0.10
11 months ago
9.0.9
11 months ago
9.0.8
11 months ago
9.0.7
11 months ago
9.0.6
11 months ago
9.0.5
11 months ago
9.0.4
11 months ago
9.0.3
11 months ago
9.0.2
11 months ago
9.0.1
11 months ago
9.0.0
11 months ago