Add: Coding Style - Prettier files #182

This commit is contained in:
alstjr7375 2021-08-30 13:27:25 +09:00
parent c2d69d7f3e
commit f5fd8302e8
3 changed files with 15 additions and 0 deletions

2
.gitattributes vendored
View file

@ -1,6 +1,8 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.github export-ignore
/.prettierignore export-ignore
/.prettierrc.json export-ignore
/CODE_OF_CONDUCT.md export-ignore
/CONTRIBUTING.md export-ignore
/README.org export-ignore

6
.prettierignore Normal file
View file

@ -0,0 +1,6 @@
# Ignore Documents
*.org
*.md
# User.js
user.js

7
.prettierrc.json Normal file
View file

@ -0,0 +1,7 @@
{
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"bracketSpacing": true
}