29 lines
772 B
JavaScript
29 lines
772 B
JavaScript
|
|
import eslint from "@eslint/js";
|
||
|
|
import eslintPluginVue from "eslint-plugin-vue";
|
||
|
|
import globals from "globals";
|
||
|
|
import typescriptEslint from "typescript-eslint";
|
||
|
|
|
||
|
|
export default typescriptEslint.config(
|
||
|
|
{ ignores: ["*.d.ts", "**/coverage", "**/dist"] },
|
||
|
|
{
|
||
|
|
extends: [
|
||
|
|
eslint.configs.recommended,
|
||
|
|
...typescriptEslint.configs.recommended,
|
||
|
|
...eslintPluginVue.configs["flat/recommended"],
|
||
|
|
],
|
||
|
|
files: ["**/*.{ts,vue}"],
|
||
|
|
languageOptions: {
|
||
|
|
ecmaVersion: "latest",
|
||
|
|
sourceType: "module",
|
||
|
|
globals: globals.browser,
|
||
|
|
parserOptions: {
|
||
|
|
parser: typescriptEslint.parser,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
"vue/singleline-html-element-content-newline": "off",
|
||
|
|
"vue/max-attributes-per-line": "off",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
);
|