mirror of
https://github.com/koreanbots/core.git
synced 2025-12-13 05:10:24 +00:00
* chore: use prettier * chore: add jsx single quote * chore: remove indent rule * chore: add prettier plugin for eslint
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
module.exports = {
|
|
// Change your rules accordingly to your coding style preferences.
|
|
// https://prettier.io/docs/en/options.html
|
|
semi: false,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
jsxSingleQuote: true,
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: true,
|
|
plugins: ['prettier-plugin-tailwindcss']
|
|
} |