initial commit
This commit is contained in:
36
.prettierrc.js
Normal file
36
.prettierrc.js
Normal file
@@ -0,0 +1,36 @@
|
||||
module.exports = {
|
||||
useTabs: false,
|
||||
tabWidth: 2,
|
||||
singleQuote: false,
|
||||
trailingComma: "all",
|
||||
semi: true,
|
||||
arrowParens: "always",
|
||||
endOfLine: "lf",
|
||||
overrides: [
|
||||
{
|
||||
files: ["*.ts"],
|
||||
options: {
|
||||
parser: "typescript",
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ["*.tsx"],
|
||||
options: {
|
||||
parser: "typescript",
|
||||
jsxSingleQuote: false,
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ["*.scss"],
|
||||
options: {
|
||||
parser: "scss",
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ["*.json"],
|
||||
options: {
|
||||
parser: "json",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user