Last active
October 17, 2023 11:45
-
-
Save cn-2k/fe326ea9fd5fa989cc4623c893aa4e7b to your computer and use it in GitHub Desktop.
eslint config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
parser: "vue-eslint-parser", | |
parserOptions: { | |
parser: "@typescript-eslint/parser", | |
ecmaVersion: 2018, | |
sourceType: "module", | |
jsxPragma: "React", | |
ecmaFeatures: { | |
jsx: true, | |
}, | |
}, | |
extends: [ | |
"plugin:vue/vue3-recommended", | |
"plugin:@typescript-eslint/recommended", | |
"plugin:prettier/recommended", | |
"eslint-config-prettier", | |
], | |
rules: { | |
"space-before-function-paren": "off", | |
"@typescript-eslint/ban-ts-ignore": "off", | |
"@typescript-eslint/explicit-function-return-type": "off", | |
"@typescript-eslint/no-explicit-any": "off", | |
"@typescript-eslint/no-var-requires": "off", | |
"@typescript-eslint/no-empty-function": "off", | |
"@typescript-eslint/no-use-before-define": "off", | |
"@typescript-eslint/ban-ts-comment": "off", | |
"@typescript-eslint/ban-types": "off", | |
"@typescript-eslint/no-non-null-assertion": "off", | |
"@typescript-eslint/explicit-module-boundary-types": "off", | |
"no-use-before-define": "off", | |
"vue/comment-directive": "off", | |
"vue/script-setup-uses-vars": "error", | |
"vue/multi-word-component-names": "off", | |
"vue/custom-event-name-casing": "off", | |
"vue/attributes-order": "off", | |
"vue/one-component-per-file": "off", | |
"vue/html-closing-bracket-newline": "off", | |
"vue/max-attributes-per-line": "off", | |
"vue/multiline-html-element-content-newline": "off", | |
"vue/singleline-html-element-content-newline": "off", | |
"vue/attribute-hyphenation": "off", | |
"vue/require-default-prop": "off", | |
"vue/html-self-closing": [ | |
"error", | |
{ | |
html: { | |
void: "always", | |
normal: "never", | |
component: "always", | |
}, | |
svg: "always", | |
math: "always", | |
}, | |
], | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment