mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
17 lines
241 B
JavaScript
17 lines
241 B
JavaScript
module.exports = {
|
|
semi: false,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
endOfLine: 'auto',
|
|
overrides: [
|
|
{
|
|
files: '*.scss',
|
|
options: {
|
|
parser: 'scss',
|
|
},
|
|
},
|
|
],
|
|
}
|