--- pageClass: rule-details sidebarDepth: 0 title: vue/no-multi-spaces description: disallow multiple spaces since: v3.12.0 --- # vue/no-multi-spaces > disallow multiple spaces - :gear: This rule is included in the following preset configs: - `*.configs["flat/strongly-recommended"]` - `*.configs["flat/vue2-strongly-recommended"]` - `*.configs["flat/recommended"]` - `*.configs["flat/vue2-recommended"]` - `"plugin:vue/strongly-recommended"` - `"plugin:vue/vue2-strongly-recommended"` - `"plugin:vue/recommended"` - `"plugin:vue/vue2-recommended"` - :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fix-problems) can automatically fix some of the problems reported by this rule. ## :book: Rule Details This rule aims at removing multiple spaces in tags, which are not used for indentation. ```vue ``` ## :wrench: Options ```json { "vue/no-multi-spaces": ["error", { "ignoreProperties": false, "ignoreEOLComments": false }] } ``` - `ignoreProperties` ... whether or not objects' properties should be ignored. default `false` - `ignoreEOLComments` ... whether or not the spaces before EOL comments should be ignored. default `false` ### `"ignoreProperties": true` ```vue ``` ### `"ignoreEOLComments": true` ```vue ``` ## :rocket: Version This rule was introduced in eslint-plugin-vue v3.12.0 ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-multi-spaces.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/no-multi-spaces.test.ts)