tanshu
1350870f9e
Added prettier and also prettied all the typescript files using prettier ESLint is using the AirBnB rules which are the most strict to lint the files.
9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
module.exports = {
|
|
trailingComma: "all",
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: true,
|
|
bracketSpacing: true,
|
|
printWidth: 100
|
|
};
|