Git Product home page Git Product logo

shizer's Introduction

Vue 3 + TypeScript + Vite

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

prettier

{
    // 一行的字符数,如果超过会进行换行,默认为80
    "printWidth": 120,
    // 一个tab代表几个空格数,默认为80
    "tabWidth": 4,
    // 是否使用tab进行缩进,默认为false,表示用空格进行缩减
    "useTabs": false,
    // 字符串是否使用单引号,默认为false,使用双引号
    "singleQuote": true,
    // 行位是否使用分号,默认为true
    "semi": false,
    // 是否使用尾逗号,有三个可选值"<none|es5|all>"
    "trailingComma": "none",
    // 对象大括号直接是否有空格, 默认为true,效果:{ foo: bar }
    "bracketSpacing": true,
    // 代码的解析引擎,默认为babylon,与babel相同
    // parser: 'babylon',
    // 未尾分号
    "jsxBracketSameLine": false,
    "jsxSingleQuote": false,
    "arrowParens": "always",
    "insertPragma": false,
    "requirePragma": false,
    "proseWrap": "never",
    "htmlWhitespaceSensitivity": "ignore",
    "quoteProps": "as-needed",
    "vueIndentScriptAndStyle": true,
    "endOfLine": "auto",
    // 不让prettier使用eslint的代码格式进行校验
    "eslintIntegration": false,
    // 不使用prettier格式化的文件填写在项目的.prettierignore文件中
    "ignorePath": ".prettierignore",
    // 不让prettier使用stylelint的代码格式进行校验
    "stylelintIntegration": false,
    "tslintIntegration": false,
    "cursorOffset": -1
}

shizer's People

Contributors

zombruce avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.