29 lines
696 B
JavaScript
29 lines
696 B
JavaScript
|
|
/*
|
||
|
|
* This file is part of the kernelstudio package.
|
||
|
|
*
|
||
|
|
* (c) 2014-2025 zlin <admin@kernelstudio.com>
|
||
|
|
*
|
||
|
|
* For the full copyright and license information, please view the LICENSE file
|
||
|
|
* that was distributed with this source code.
|
||
|
|
*/
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
"printWidth": 200,
|
||
|
|
"tabWidth": 2,
|
||
|
|
"useTabs": false,
|
||
|
|
"semi": true,
|
||
|
|
"vueIndentScriptAndStyle": true,
|
||
|
|
"singleQuote": true,
|
||
|
|
"quoteProps": "as-needed",
|
||
|
|
"bracketSpacing": true,
|
||
|
|
"trailingComma": "es5",
|
||
|
|
"jsxBracketSameLine": true,
|
||
|
|
"jsxSingleQuote": false,
|
||
|
|
"arrowParens": "always",
|
||
|
|
"insertPragma": false,
|
||
|
|
"requirePragma": false,
|
||
|
|
"proseWrap": "preserve",
|
||
|
|
"htmlWhitespaceSensitivity": "strict",
|
||
|
|
"endOfLine": "lf"
|
||
|
|
};
|